feat: add option in user preferences to seed after download completes

This commit is contained in:
Hachi-R
2024-10-31 23:02:23 -03:00
parent 1d6db5b76b
commit 0955af1e69
6 changed files with 37 additions and 1 deletions

View File

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