summaryrefslogtreecommitdiffstats
path: root/settings/ajax/enableapp.php
blob: 81ca1e0338d40d69288cb3d557be32f9e7bfd229 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

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

$groups = isset($_POST['groups']) ? $_POST['groups'] : null;

try {
	OC_App::enable(OC_App::cleanAppId($_POST['appid']), $groups);
	OC_JSON::success();
} catch (Exception $e) {
	OC_Log::write('core', $e->getMessage(), OC_Log::ERROR);
	OC_JSON::error(array("data" => array("message" => $e->getMessage()) ));
}