summary refs log tree commit diff
path: root/src/util/entities/ClientRelease.ts
diff options
context:
space:
mode:
authorMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2022-10-24 14:35:08 +1100
committerMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2022-10-24 14:35:08 +1100
commitfc2ccc0b25ac1e31ef2a1cacbcc190d7debef7c2 (patch)
treec08f948ec56783754bc380eda529199e9c41ced5 /src/util/entities/ClientRelease.ts
parentremove self_edit_guilds, was dumb (diff)
downloadserver-fc2ccc0b25ac1e31ef2a1cacbcc190d7debef7c2.tar.xz
Change android and ios client downloads to use /download endpoint, update Release entity to suck less
Diffstat (limited to 'src/util/entities/ClientRelease.ts')
-rw-r--r--src/util/entities/ClientRelease.ts9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/util/entities/ClientRelease.ts b/src/util/entities/ClientRelease.ts

index 2723ab67..ff7ff716 100644 --- a/src/util/entities/ClientRelease.ts +++ b/src/util/entities/ClientRelease.ts
@@ -7,19 +7,16 @@ export class Release extends BaseClass { name: string; @Column() - pub_date: string; + pub_date: Date; @Column() url: string; @Column() - deb_url: string; + platform: string; @Column() - osx_url: string; - - @Column() - win_url: string; + enabled: boolean; @Column({ nullable: true }) notes?: string;