enableapp.php 230 B

1234567891011121314
  1. <?php
  2. // Init owncloud
  3. require_once('../../lib/base.php');
  4. OC_JSON::checkAdminUser();
  5. OCP\JSON::callCheck();
  6. OC_JSON::setContentTypeHeader();
  7. if(OC_App::enable($_POST['appid'])){
  8. OC_JSON::success();
  9. }else{
  10. OC_JSON::error();
  11. }