summaryrefslogtreecommitdiffstats
path: root/settings/ajax/disableapp.php
blob: 263e2c274799fd0745388ebb3d7c65145a6e7bed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php
OC_JSON::checkAdminUser();
OCP\JSON::callCheck();

if (!array_key_exists('appid', $_POST)) {
	OC_JSON::error();
	exit;
}

$appId = $_POST['appid'];
$appId = OC_App::cleanAppId($appId);

OC_App::disable($appId);
OC_JSON::success();