feat: add option to disable NSFW warning

This commit is contained in:
Hachi-R
2024-11-06 02:57:52 -03:00
parent b09e91a1cf
commit 2f8fe67f9f
6 changed files with 34 additions and 1 deletions

View File

@@ -38,6 +38,9 @@ export class UserPreferences {
@Column("boolean", { default: false })
startMinimized: boolean;
@Column("boolean", { default: false })
disableNsfwPopup: boolean;
@CreateDateColumn()
createdAt: Date;