Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2017-05-09 11:44:11 +0300
committerJoas Schilling <coding@schilljs.com>2017-05-09 11:45:10 +0300
commita089e084116e88b3cad35b2f3a294445d78d8a3d (patch)
treea0b4b35cc847fe0c1d5d0946c8fe5484992ab87a
parent90b1c73e812642ea5410c4e4b6d603162ee5ea47 (diff)
Add circle as well
Signed-off-by: Joas Schilling <coding@schilljs.com>
-rw-r--r--lib/public/RichObjectStrings/Definitions.php25
1 files changed, 25 insertions, 0 deletions
diff --git a/lib/public/RichObjectStrings/Definitions.php b/lib/public/RichObjectStrings/Definitions.php
index 2fc9b44fe60..b938fa5e6cb 100644
--- a/lib/public/RichObjectStrings/Definitions.php
+++ b/lib/public/RichObjectStrings/Definitions.php
@@ -177,6 +177,31 @@ class Definitions {
],
],
],
+ 'circle' => [
+ 'author' => 'Maxence Lange',
+ 'app' => 'circles',
+ 'since' => '12.0.0',
+ 'parameters' => [
+ 'id' => [
+ 'since' => '12.0.0',
+ 'required' => true,
+ 'description' => 'The id used to identify the circle on the instance',
+ 'example' => '42',
+ ],
+ 'name' => [
+ 'since' => '12.0.0',
+ 'required' => true,
+ 'description' => 'The display name of the circle which should be used in the visual representation',
+ 'example' => 'My friends',
+ ],
+ 'link' => [
+ 'since' => '12.0.0',
+ 'required' => true,
+ 'description' => 'The full URL to the circle',
+ 'example' => 'http://localhost/index.php/apps/circles/#42',
+ ],
+ ],
+ ],
'email' => [
'author' => 'Nextcloud',
'app' => 'sharebymail',