summaryrefslogtreecommitdiffstats
path: root/settings/ajax/disableapp.php
blob: c1e5bc8eac76680cce533ab50d40207fd8964d54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php
OCP\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();