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

// Init owncloud
require_once('../../lib/base.php');

OC_JSON::checkAdminUser();

$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" => "Unable to delete group" )));
}

?>