diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2018-06-09 19:55:09 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2018-06-09 19:55:09 +0200 |
commit | 228d1cfbd731b5452ca0d35f833e39a488224add (patch) | |
tree | 3d4eccf3cde12b4648bf3a6d19f55e533435faff /apps/provisioning_api/appinfo | |
parent | 0c2f016b672917c27eadf694be32eccf118dd064 (diff) | |
download | nextcloud-server-228d1cfbd731b5452ca0d35f833e39a488224add.tar.gz nextcloud-server-228d1cfbd731b5452ca0d35f833e39a488224add.zip |
Make the DELETION of groups match greedy on the groupID
fixes #6032
Now since the match is greedy it will also eat the /
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'apps/provisioning_api/appinfo')
-rw-r--r-- | apps/provisioning_api/appinfo/routes.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/provisioning_api/appinfo/routes.php b/apps/provisioning_api/appinfo/routes.php index 5d1d2a6d501..8624eb2536a 100644 --- a/apps/provisioning_api/appinfo/routes.php +++ b/apps/provisioning_api/appinfo/routes.php @@ -39,7 +39,7 @@ return [ ['root' => '/cloud', 'name' => 'Groups#getGroupUsers', 'url' => '/groups/{groupId}/users', 'verb' => 'GET'], ['root' => '/cloud', 'name' => 'Groups#getGroupUsersDetails', 'url' => '/groups/{groupId}/users/details', 'verb' => 'GET'], ['root' => '/cloud', 'name' => 'Groups#addGroup', 'url' => '/groups', 'verb' => 'POST'], - ['root' => '/cloud', 'name' => 'Groups#deleteGroup', 'url' => '/groups/{groupId}', 'verb' => 'DELETE'], + ['root' => '/cloud', 'name' => 'Groups#deleteGroup', 'url' => '/groups/{groupId}', 'verb' => 'DELETE', 'requirements' => ['groupId' => '.+']], ['root' => '/cloud', 'name' => 'Groups#getSubAdminsOfGroup', 'url' => '/groups/{groupId}/subadmins', 'verb' => 'GET'], // Users |