mirror of
https://github.com/spacebarchat/server.git
synced 2024-11-08 11:52:55 +01:00
fix
This commit is contained in:
parent
87def2856e
commit
9b9d3c3493
@ -478218,11 +478218,8 @@
|
|||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
"url": {
|
"url": {
|
||||||
"description": "The URL to the corresponding installer.\nOnly provided if auto updates are available for the selected platform.",
|
"description": "The URL to the corresponding installer.",
|
||||||
"type": [
|
"type": "string"
|
||||||
"null",
|
|
||||||
"string"
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
"notes": {
|
"notes": {
|
||||||
"description": "Any extra notes for the update\nOnly provided if auto updates are available for the selected platform.",
|
"description": "Any extra notes for the update\nOnly provided if auto updates are available for the selected platform.",
|
||||||
|
@ -43,10 +43,10 @@ export class Release extends BaseClass {
|
|||||||
enabled: boolean;
|
enabled: boolean;
|
||||||
|
|
||||||
@Column({ nullable: true })
|
@Column({ nullable: true })
|
||||||
notes: string | null;
|
notes?: string;
|
||||||
|
|
||||||
@Column({ nullable: true })
|
@Column({ nullable: true })
|
||||||
signature: string | null;
|
signature?: string;
|
||||||
|
|
||||||
@Column({ default: "stable" })
|
@Column({ default: "stable" })
|
||||||
channel: string;
|
channel: string;
|
||||||
|
Loading…
Reference in New Issue
Block a user