Browse Source

Merge pull request #9814 from nextcloud/bugfix/6032/delete_group_with_slash

Make the DELETION of groups match greedy on the groupID
pull/9756/merge
Morris Jobke 8 years ago
committed by GitHub
parent
commit
cc78e17d5f
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      apps/provisioning_api/appinfo/routes.php

2
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

Loading…
Cancel
Save