summaryrefslogtreecommitdiffstats
path: root/apps/files_external/ajax/addMountPoint.php
blob: 9100d47db3a5494c9f54459511a797e474e91849 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php

OCP\JSON::checkAppEnabled('files_external');
OCP\JSON::callCheck();

if ($_POST['isPersonal'] == 'true') {
	OCP\JSON::checkLoggedIn();
	$isPersonal = true;
} else {
	OCP\JSON::checkAdminUser();
	$isPersonal = false;
}
$status = OC_Mount_Config::addMountPoint($_POST['mountPoint'],
							   $_POST['class'],
							   $_POST['classOptions'],
							   $_POST['mountType'],
							   $_POST['applicable'],
							   $isPersonal);
OCP\JSON::success(array('data' => array('message' => $status)));