feat: adding resync button

This commit is contained in:
Chubby Granny Chaser 2024-06-04 11:28:11 +01:00
parent ea923d5082
commit 0b68ddda78
No known key found for this signature in database
5 changed files with 47 additions and 20 deletions

View file

@ -23,7 +23,7 @@ export class DownloadSource {
@Column("text", { nullable: true })
etag: string | null;
@Column("text", { default: "online" })
@Column("text", { default: DownloadSourceStatus.UpToDate })
status: DownloadSourceStatus;
@OneToMany(() => Repack, (repack) => repack.downloadSource, { cascade: true })