nextcloud/settings/ajax/enableapp.php

11 lines
158 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();
OC_JSON::setContentTypeHeader();
2011-07-29 23:36:03 +04:00
OC_App::enable($_POST['appid']);
?>