summaryrefslogtreecommitdiffstats
path: root/lib/public
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2017-01-17 11:42:13 +0100
committerGitHub <noreply@github.com>2017-01-17 11:42:13 +0100
commit35b8f03c07569f727b2a9c3115fc117907ef7c55 (patch)
tree89067f67492a96f882d66444b2aa71b03dfaf1a9 /lib/public
parent61c68d4ebece11df68f5a8fa7b54d38e62fcf69f (diff)
parent377e5364171dff12833e2f332b6b0dfdf755646c (diff)
downloadnextcloud-server-35b8f03c07569f727b2a9c3115fc117907ef7c55.tar.gz
nextcloud-server-35b8f03c07569f727b2a9c3115fc117907ef7c55.zip
Merge pull request #3106 from nextcloud/spreed-calls-are-objects
Define spreed calls
Diffstat (limited to 'lib/public')
-rw-r--r--lib/public/RichObjectStrings/Definitions.php25
1 files changed, 25 insertions, 0 deletions
diff --git a/lib/public/RichObjectStrings/Definitions.php b/lib/public/RichObjectStrings/Definitions.php
index 4b5b0da978e..f1208ae0f2c 100644
--- a/lib/public/RichObjectStrings/Definitions.php
+++ b/lib/public/RichObjectStrings/Definitions.php
@@ -152,6 +152,31 @@ class Definitions {
],
],
],
+ 'call' => [
+ 'author' => 'Nextcloud',
+ 'app' => 'spreed',
+ 'since' => '11.0.2',
+ 'parameters' => [
+ 'id' => [
+ 'since' => '11.0.2',
+ 'required' => true,
+ 'description' => 'The id used to identify the call on the instance',
+ 'example' => '42',
+ ],
+ 'name' => [
+ 'since' => '11.0.2',
+ 'required' => true,
+ 'description' => 'The display name of the call which should be used in the visual representation',
+ 'example' => 'Company call',
+ ],
+ 'call-type' => [
+ 'since' => '11.0.2',
+ 'required' => true,
+ 'description' => 'The type of the call: one2one, group or public',
+ 'example' => 'one2one',
+ ],
+ ],
+ ],
'email' => [
'author' => 'Nextcloud',
'app' => 'sharebymail',