diff options
author | Joas Schilling <coding@schilljs.com> | 2017-03-23 19:24:02 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2017-03-23 19:24:02 +0100 |
commit | 3c1e7e5ada0710988cb6ff498ae430d9718179c4 (patch) | |
tree | eb0c76c76ffbc4da400f043aae089b5816123737 /apps/provisioning_api/lib | |
parent | 209e3e39e2511ccffde44afb4f1b8694f39ca683 (diff) | |
download | nextcloud-server-3c1e7e5ada0710988cb6ff498ae430d9718179c4.tar.gz nextcloud-server-3c1e7e5ada0710988cb6ff498ae430d9718179c4.zip |
Make deleting a group compatible with ocs v2
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/provisioning_api/lib')
-rw-r--r-- | apps/provisioning_api/lib/Controller/GroupsController.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/provisioning_api/lib/Controller/GroupsController.php b/apps/provisioning_api/lib/Controller/GroupsController.php index c772076c3d1..2d329bf974b 100644 --- a/apps/provisioning_api/lib/Controller/GroupsController.php +++ b/apps/provisioning_api/lib/Controller/GroupsController.php @@ -164,7 +164,7 @@ class GroupsController extends OCSController { throw new OCSException('', 102); } - return new DataResponse(null, 100); + return new DataResponse(); } /** |