Change android and ios client downloads to use /download endpoint, update Release entity to suck less

This commit is contained in:
Madeline
2022-10-24 14:35:08 +11:00
parent 67a8c0d445
commit fc2ccc0b25
6 changed files with 68 additions and 32 deletions
+3 -6
View File
@@ -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;