remotes/origin/handlebars-approach
Roeland Jago Douma 11 years ago
parent 96949649f0
commit ed1f034e6b
  1. 4
      apps/provisioning_api/lib/groups.php

@ -102,9 +102,9 @@ class Groups{
public function deleteGroup($parameters){
// Check it exists
if(!$this->groupManager->grouExists($parameters['groupid'])){
if(!$this->groupManager->groupExists($parameters['groupid'])){
return new OC_OCS_Result(null, 101);
} else if($parameters['groupid'] === 'admin' || !$this->groupManger->get($parameters['groupid'])->delete()){
} else if($parameters['groupid'] === 'admin' || !$this->groupManager->get($parameters['groupid'])->delete()){
// Cannot delete admin group
return new OC_OCS_Result(null, 102);
} else {

Loading…
Cancel
Save