Welcome to mirror list, hosted at ThFree Co, Russian Federation.

addMountPoint.php « ajax « files_external « apps - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fed2ddfcf3d95e3597b6426b0eac3cdf0cedabfa (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)));