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 <213943+nickvergessen@users.noreply.github.com>2018-03-23 16:44:13 +0300
committerGitHub <noreply@github.com>2018-03-23 16:44:13 +0300
commit3d8fcad88b610a41c4939663ab3b4256a149ab1f (patch)
tree512fbc2e7cb778838014ab7d55e89813b85bf3d8 /apps/provisioning_api/appinfo
parent34cb8ea161e9e5253dd43814140cff236860ab43 (diff)
parent5f38cfbc8072936c71d3e15d98a6df75079d046c (diff)
Merge pull request #8865 from nextcloud/ocs-groups-displayname
Return groups displayname in provisioning api
Diffstat (limited to 'apps/provisioning_api/appinfo')
-rw-r--r--apps/provisioning_api/appinfo/routes.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/provisioning_api/appinfo/routes.php b/apps/provisioning_api/appinfo/routes.php
index 791267a97a1..c2bbd8025ee 100644
--- a/apps/provisioning_api/appinfo/routes.php
+++ b/apps/provisioning_api/appinfo/routes.php
@@ -34,6 +34,7 @@ return [
// Groups
['root' => '/cloud', 'name' => 'Groups#getGroups', 'url' => '/groups', 'verb' => 'GET'],
+ ['root' => '/cloud', 'name' => 'Groups#getGroupsDetails', 'url' => '/groups/details', 'verb' => 'GET'],
['root' => '/cloud', 'name' => 'Groups#getGroup', 'url' => '/groups/{groupId}', 'verb' => 'GET'],
['root' => '/cloud', 'name' => 'Groups#addGroup', 'url' => '/groups', 'verb' => 'POST'],
['root' => '/cloud', 'name' => 'Groups#deleteGroup', 'url' => '/groups/{groupId}', 'verb' => 'DELETE'],