Blame view

sources/settings/ajax/enableapp.php 367 Bytes
03e52840d   Kload   Init
1
2
3
4
  <?php
  
  OC_JSON::checkAdminUser();
  OCP\JSON::callCheck();
6d9380f96   Cédric Dupont   Update sources OC...
5
  $groups = isset($_POST['groups']) ? $_POST['groups'] : null;
31b7f2792   Kload   Upgrade to ownclo...
6
  try {
6d9380f96   Cédric Dupont   Update sources OC...
7
  	OC_App::enable(OC_App::cleanAppId($_POST['appid']), $groups);
31b7f2792   Kload   Upgrade to ownclo...
8
9
10
11
  	OC_JSON::success();
  } catch (Exception $e) {
  	OC_Log::write('core', $e->getMessage(), OC_Log::ERROR);
  	OC_JSON::error(array("data" => array("message" => $e->getMessage()) ));
03e52840d   Kload   Init
12
  }