Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Define a guest type so Talk can use it in it's notifications
Signed-off-by: Joas Schilling <[email protected]>
  • Loading branch information
nickvergessen committed Sep 2, 2019
commit 60fe0d7fc4fb6fc0e6d0f9d905bd2ef340d22574
19 changes: 19 additions & 0 deletions lib/public/RichObjectStrings/Definitions.php
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down