mirror of
https://github.com/spacebarchat/server.git
synced 2024-11-25 11:43:07 +01:00
revert release url being nullable, we dont need it
This commit is contained in:
parent
d3d828f41d
commit
87def2856e
@ -30,8 +30,8 @@ export class Release extends BaseClass {
|
|||||||
@Column()
|
@Column()
|
||||||
pub_date: Date;
|
pub_date: Date;
|
||||||
|
|
||||||
@Column({ nullable: true })
|
@Column()
|
||||||
url: string | null;
|
url: string;
|
||||||
|
|
||||||
@Column()
|
@Column()
|
||||||
platform: string;
|
platform: string;
|
||||||
|
@ -32,9 +32,8 @@ export interface UpdatesResponse {
|
|||||||
pub_date: string;
|
pub_date: string;
|
||||||
/**
|
/**
|
||||||
* The URL to the corresponding installer.
|
* The URL to the corresponding installer.
|
||||||
* Only provided if auto updates are available for the selected platform.
|
|
||||||
*/
|
*/
|
||||||
url: string | null;
|
url: string;
|
||||||
/**
|
/**
|
||||||
* Any extra notes for the update
|
* Any extra notes for the update
|
||||||
* Only provided if auto updates are available for the selected platform.
|
* Only provided if auto updates are available for the selected platform.
|
||||||
|
Loading…
Reference in New Issue
Block a user