mirror of
https://github.com/nextcloud/spreed.git
synced 2025-12-18 05:20:50 +01:00
chore(assets): Recompile assets
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
4ec538f0d2
commit
b6b3b414af
4 changed files with 24 additions and 0 deletions
|
|
@ -7956,6 +7956,12 @@
|
|||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "Whether the poll should be saved as a draft (only allowed for moderators and with `talk-polls-drafts` capability)"
|
||||
},
|
||||
"threadId": {
|
||||
"type": "integer",
|
||||
"format": "int64",
|
||||
"default": 0,
|
||||
"description": "Thread id which this poll should be posted into (also requires `threads` capability)"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -7861,6 +7861,12 @@
|
|||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "Whether the poll should be saved as a draft (only allowed for moderators and with `talk-polls-drafts` capability)"
|
||||
},
|
||||
"threadId": {
|
||||
"type": "integer",
|
||||
"format": "int64",
|
||||
"default": 0,
|
||||
"description": "Thread id which this poll should be posted into (also requires `threads` capability)"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -5340,6 +5340,12 @@ export interface operations {
|
|||
* @default false
|
||||
*/
|
||||
draft?: boolean;
|
||||
/**
|
||||
* Format: int64
|
||||
* @description Thread id which this poll should be posted into (also requires `threads` capability)
|
||||
* @default 0
|
||||
*/
|
||||
threadId?: number;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
|||
|
|
@ -4802,6 +4802,12 @@ export interface operations {
|
|||
* @default false
|
||||
*/
|
||||
draft?: boolean;
|
||||
/**
|
||||
* Format: int64
|
||||
* @description Thread id which this poll should be posted into (also requires `threads` capability)
|
||||
* @default 0
|
||||
*/
|
||||
threadId?: number;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue