aboutsummaryrefslogtreecommitdiffstats
path: root/settings/ajax/removegroup.php
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <JanCBorchardt@fsfe.org>2011-08-13 04:04:48 +0200
committerJan-Christoph Borchardt <JanCBorchardt@fsfe.org>2011-08-13 05:13:34 +0200
commit4a5ee765cf5030c7d92d88687e886079f6bafb1e (patch)
tree0b87acdf2f21f56dc1b97b063121899f3cae87bc /settings/ajax/removegroup.php
parent67156f87e3757fbd5e692e7d6b2209cfafc6c3cf (diff)
downloadnextcloud-server-4a5ee765cf5030c7d92d88687e886079f6bafb1e.tar.gz
nextcloud-server-4a5ee765cf5030c7d92d88687e886079f6bafb1e.zip
merged admin, help and settings to settings
Diffstat (limited to 'settings/ajax/removegroup.php')
-rw-r--r--settings/ajax/removegroup.php25
1 files changed, 25 insertions, 0 deletions
diff --git a/settings/ajax/removegroup.php b/settings/ajax/removegroup.php
new file mode 100644
index 00000000000..bf80da741c7
--- /dev/null
+++ b/settings/ajax/removegroup.php
@@ -0,0 +1,25 @@
+<?php
+
+// Init owncloud
+require_once('../../lib/base.php');
+
+// We send json data
+header( "Content-Type: application/jsonrequest" );
+
+// Check if we are a user
+if( !OC_User::isLoggedIn() || !OC_Group::inGroup( OC_User::getUser(), 'admin' )){
+ echo json_encode( array( "status" => "error", "data" => array( "message" => "Authentication error" )));
+ exit();
+}
+
+$name = $_POST["groupname"];
+
+// Return Success story
+if( OC_Group::deleteGroup( $name )){
+ echo json_encode( array( "status" => "success", "data" => array( "groupname" => $name )));
+}
+else{
+ echo json_encode( array( "status" => "error", "data" => array( "message" => "Unable to delete group" )));
+}
+
+?>