summaryrefslogtreecommitdiffstats
path: root/apps/files_external/ajax/removeMountPoint.php
blob: aa44642620267a39b2538eba3773bee1c8759224 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

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

if ($_POST['isPersonal'] == 'true') {
	OCP\JSON::checkLoggedIn();
	$isPersonal = true;
} else {
	OCP\JSON::checkAdminUser();
	$isPersonal = false;
}
OC_Mount_Config::removeMountPoint($_POST['mountPoint'], $_POST['mountType'], $_POST['applicable'], $isPersonal);