diff options
author | Joas Schilling <coding@schilljs.com> | 2016-12-01 15:33:13 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2016-12-01 15:36:22 +0100 |
commit | 1aefbed55fab34c4d20b332b6d2ee3d703c6aada (patch) | |
tree | a3388a79c57b9144676326071bfb57627f869de9 /lib/public/RichObjectStrings | |
parent | 917cac543637016743f5375ce54c5240b0263130 (diff) | |
download | nextcloud-server-1aefbed55fab34c4d20b332b6d2ee3d703c6aada.tar.gz nextcloud-server-1aefbed55fab34c4d20b332b6d2ee3d703c6aada.zip |
Highlight the app name in the notification
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/public/RichObjectStrings')
-rw-r--r-- | lib/public/RichObjectStrings/Definitions.php | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/public/RichObjectStrings/Definitions.php b/lib/public/RichObjectStrings/Definitions.php index 2b35f9ceed1..5f813f089f3 100644 --- a/lib/public/RichObjectStrings/Definitions.php +++ b/lib/public/RichObjectStrings/Definitions.php @@ -96,6 +96,24 @@ class Definitions { ], ], ], + 'app' => [ + 'author' => 'Nextcloud', + 'app' => 'updatenotification', + 'since' => '11.0.0', + 'parameters' => [ + 'id' => [ + 'since' => '11.0.0', + 'required' => true, 'description' => 'The app id', + 'example' => 'updatenotification', + ], + 'name' => [ + 'since' => '11.0.0', + 'required' => true, + 'description' => 'The name of the app which should be used in the visual representation', + 'example' => 'Update notification', + ], + ], + ], 'calendar' => [ 'author' => 'Nextcloud', 'app' => 'dav', |