feat: add 'startMinimized' property to user preferences

This commit is contained in:
Hachi-R
2024-10-30 14:38:27 -03:00
parent 0a86ec89aa
commit 6dd454a982
4 changed files with 23 additions and 1 deletions

View File

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