diff options
author | Joas Schilling <coding@schilljs.com> | 2022-05-11 14:37:26 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2022-05-11 14:37:26 +0200 |
commit | d18a293ee50f1a17942391b2031f39fed6ff2eae (patch) | |
tree | 72e573fee1ed76d10a4eb75488d3a1e77c2243a4 /lib/public | |
parent | 5a0b28d603e142051967175f023b698ff7e262db (diff) | |
download | nextcloud-server-d18a293ee50f1a17942391b2031f39fed6ff2eae.tar.gz nextcloud-server-d18a293ee50f1a17942391b2031f39fed6ff2eae.zip |
Add talk-poll to the ROS definitions
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/RichObjectStrings/Definitions.php | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/lib/public/RichObjectStrings/Definitions.php b/lib/public/RichObjectStrings/Definitions.php index 676979170a6..383d626c155 100644 --- a/lib/public/RichObjectStrings/Definitions.php +++ b/lib/public/RichObjectStrings/Definitions.php @@ -579,6 +579,25 @@ class Definitions { ], ], ], + 'talk-poll' => [ + 'author' => 'Nextcloud', + 'app' => 'talk', + 'since' => '25.0.0', + 'parameters' => [ + 'id' => [ + 'since' => '25.0.0', + 'required' => true, + 'description' => 'The id used to identify the poll on the instance', + 'example' => '12345', + ], + 'name' => [ + 'since' => '25.0.0', + 'required' => true, + 'description' => 'The poll question', + 'example' => 'What is the question?', + ], + ], + ], 'user' => [ 'author' => 'Nextcloud', 'app' => 'core', |