diff options
author | Joas Schilling <coding@schilljs.com> | 2017-01-16 18:41:00 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2017-01-17 11:14:36 +0100 |
commit | 5336f952ebaeacf8ef576d11e4b34b9867a2746d (patch) | |
tree | a144b852b6c6e24913959d91c832561d776788c6 | |
parent | cbc76a1ccb040d820cd6e71ce1dec5a1635f3a86 (diff) | |
download | nextcloud-server-5336f952ebaeacf8ef576d11e4b34b9867a2746d.tar.gz nextcloud-server-5336f952ebaeacf8ef576d11e4b34b9867a2746d.zip |
Define spreed calls
Signed-off-by: Joas Schilling <coding@schilljs.com>
-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 fbde439c47a..fce49bcce4b 100644 --- a/lib/public/RichObjectStrings/Definitions.php +++ b/lib/public/RichObjectStrings/Definitions.php @@ -152,6 +152,25 @@ 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', + ], + ], + ], 'email' => [ 'author' => 'Nextcloud', 'app' => 'sharebymail', |