Merge pull request #16968 from nextcloud/feature/noid/guest-mention-notifications-for-talk

Define a guest type so Talk can use it in it's notifications
This commit is contained in:
Roeland Jago Douma 2019-09-02 20:14:38 +02:00 committed by GitHub
commit 80d272c311
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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',