nextcloud/settings/ajax/removegroup.php

19 lines
343 B
PHP
Raw Normal View History

2011-04-17 03:04:23 +04:00
<?php
// Init owncloud
require_once('../../lib/base.php');
OC_JSON::checkAdminUser();
2011-04-17 03:04:23 +04:00
$name = $_POST["groupname"];
// Return Success story
2011-07-29 23:36:03 +04:00
if( OC_Group::deleteGroup( $name )){
OC_JSON::success(array("data" => array( "groupname" => $name )));
2011-04-17 03:04:23 +04:00
}
else{
OC_JSON::error(array("data" => array( "message" => "Unable to delete group" )));
2011-04-17 03:04:23 +04:00
}
?>