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

// Init owncloud


OC_JSON::checkAdminUser();

$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" )));
}

?>