nextcloud/settings/ajax/enableapp.php

15 lines
301 B
PHP
Raw Normal View History

<?php
// Init owncloud
require_once('../../lib/base.php');
2011-10-01 01:10:08 +04:00
OC_JSON::checkAdminUser();
2012-07-07 17:27:04 +04:00
OCP\JSON::callCheck();
OC_JSON::setContentTypeHeader();
2012-08-05 03:41:24 +04:00
$appid = OC_App::enable($_POST['appid']);
if($appid !== false) {
OC_JSON::success(array('data' => array('appid' => $appid)));
} else {
OC_JSON::error();
}