chore: merging with main

This commit is contained in:
Chubby Granny Chaser
2024-12-23 19:27:57 +00:00
66 changed files with 1829 additions and 852 deletions

View File

@@ -76,6 +76,9 @@ export class Game {
@Column("boolean", { default: false })
isDeleted: boolean;
@Column("boolean", { default: false })
shouldSeed: boolean;
@CreateDateColumn()
createdAt: Date;

View File

@@ -41,6 +41,9 @@ export class UserPreferences {
@Column("boolean", { default: false })
disableNsfwAlert: boolean;
@Column("boolean", { default: true })
seedAfterDownloadComplete: boolean;
@Column("boolean", { default: false })
showHiddenAchievementsDescription: boolean;