summaryrefslogtreecommitdiffstats
path: root/settings/ajax/removegroup.php
blob: 798d7916e61f2de452e0abf90ebcd6354df28a9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

OC_JSON::checkAdminUser();
OCP\JSON::callCheck();

$name = $_POST["groupname"];

// Return Success story
if( OC_Group::deleteGroup( $name )) {
	OC_JSON::success(array("data" => array( "groupname" => $name )));
}
else{
	OC_JSON::error(array("data" => array( "message" => $l->t("Unable to delete group") )));
}