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

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

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

$username = $_POST["username"];

// Return Success story
if( OC_User::deleteUser( $username )){
	OC_JSON::success(array("data" => array( "username" => $username )));
}
else{
	OC_JSON::error(array("data" => array( "message" => "Unable to delete user" )));
}