nextcloud/admin/ajax/enableapp.php

10 lines
149 B
PHP
Raw Normal View History

<?php
// Init owncloud
require_once('../../lib/base.php');
header( "Content-Type: application/jsonrequest" );
2011-07-29 23:36:03 +04:00
OC_App::enable($_POST['appid']);
?>