Define a guest type so Talk can use it in it's notifications

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2019-09-02 14:56:50 +02:00
parent daf89e6b34
commit 60fe0d7fc4
No known key found for this signature in database
GPG Key ID: 7076EA9751AACDDA
1 changed files with 19 additions and 0 deletions

View File

@ -268,6 +268,25 @@ class Definitions {
],
],
],
'guest' => [
'author' => 'Nextcloud',
'app' => 'spreed',
'since' => '17.0.0',
'parameters' => [
'id' => [
'since' => '17.0.0',
'required' => true,
'description' => 'The id used to identify the guest user',
'example' => '42',
],
'name' => [
'since' => '17.0.0',
'required' => true,
'description' => 'Potential displayname of the guest user',
'example' => 'Foobar Cats',
],
],
],
'highlight' => [
'author' => 'Nextcloud',
'app' => 'core',