summary refs log tree commit diff
path: root/src/util/entities/ClientRelease.ts
diff options
context:
space:
mode:
authorPuyodead1 <puyodead@proton.me>2023-12-20 02:43:28 -0500
committerPuyodead1 <puyodead@proton.me>2023-12-20 02:43:58 -0500
commit07db919bc93c3aef0b55666176e877456b064cbe (patch)
tree216fd4dea206e69ab081b1ff5d64d7ab9be8a1e7 /src/util/entities/ClientRelease.ts
parentadd missing license headers (diff)
downloadserver-07db919bc93c3aef0b55666176e877456b064cbe.tar.xz
updated updates route for spacebar client
Diffstat (limited to 'src/util/entities/ClientRelease.ts')
-rw-r--r--src/util/entities/ClientRelease.ts18
1 files changed, 15 insertions, 3 deletions
diff --git a/src/util/entities/ClientRelease.ts b/src/util/entities/ClientRelease.ts

index cfbc3a9b..776f882c 100644 --- a/src/util/entities/ClientRelease.ts +++ b/src/util/entities/ClientRelease.ts
@@ -25,17 +25,29 @@ export class Release extends BaseClass { name: string; @Column() - pub_date: Date; + version: string; @Column() - url: string; + pub_date: Date; + + @Column({ nullable: true }) + url: string | null; @Column() platform: string; @Column() + arch: string; + + @Column() enabled: boolean; @Column({ nullable: true }) - notes?: string; + notes: string | null; + + @Column({ nullable: true }) + signature: string | null; + + @Column({ default: "stable" }) + channel: string; }