2012-06-08 15:42:00 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
OCP\JSON::checkAppEnabled('files_external');
|
2012-07-07 14:12:21 +00:00
|
|
|
OCP\JSON::callCheck();
|
|
|
|
|
2012-06-08 15:42:00 +00:00
|
|
|
if ($_POST['isPersonal'] == 'true') {
|
|
|
|
OCP\JSON::checkLoggedIn();
|
|
|
|
$isPersonal = true;
|
|
|
|
} else {
|
|
|
|
OCP\JSON::checkAdminUser();
|
|
|
|
$isPersonal = false;
|
|
|
|
}
|
2012-12-24 18:45:52 +00:00
|
|
|
$status = OC_Mount_Config::addMountPoint($_POST['mountPoint'],
|
2012-11-30 15:27:11 +00:00
|
|
|
$_POST['class'],
|
|
|
|
$_POST['classOptions'],
|
|
|
|
$_POST['mountType'],
|
|
|
|
$_POST['applicable'],
|
2012-12-24 18:45:52 +00:00
|
|
|
$isPersonal);
|
|
|
|
OCP\JSON::success(array('data' => array('message' => $status)));
|