summaryrefslogtreecommitdiffstats
path: root/apps/files_external/ajax
diff options
context:
space:
mode:
authorThomas Mueller <thomas.mueller@tmit.eu>2013-02-12 11:01:14 +0100
committerThomas Mueller <thomas.mueller@tmit.eu>2013-02-12 11:01:14 +0100
commita953786d7952f2d758a8111302822708d906875e (patch)
tree167704bb6ad7debce5a38c46e795efb22aff63ea /apps/files_external/ajax
parent646d60ee83168169050271ee9d5442e2dc626e8a (diff)
parent2507e0da1d61af5d9a9506a29aa6df4c31ac068e (diff)
downloadnextcloud-server-a953786d7952f2d758a8111302822708d906875e.tar.gz
nextcloud-server-a953786d7952f2d758a8111302822708d906875e.zip
Merge branch 'master' into external_storage_ui_feedback
Diffstat (limited to 'apps/files_external/ajax')
-rw-r--r--apps/files_external/ajax/removeMountPoint.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/apps/files_external/ajax/removeMountPoint.php b/apps/files_external/ajax/removeMountPoint.php
index aa446426202..2f5dbcfdbac 100644
--- a/apps/files_external/ajax/removeMountPoint.php
+++ b/apps/files_external/ajax/removeMountPoint.php
@@ -3,6 +3,15 @@
OCP\JSON::checkAppEnabled('files_external');
OCP\JSON::callCheck();
+if (!isset($_POST['isPersonal']))
+ return;
+if (!isset($_POST['mountPoint']))
+ return;
+if (!isset($_POST['mountType']))
+ return;
+if (!isset($_POST['applicable']))
+ return;
+
if ($_POST['isPersonal'] == 'true') {
OCP\JSON::checkLoggedIn();
$isPersonal = true;
@@ -10,4 +19,5 @@ if ($_POST['isPersonal'] == 'true') {
OCP\JSON::checkAdminUser();
$isPersonal = false;
}
+
OC_Mount_Config::removeMountPoint($_POST['mountPoint'], $_POST['mountType'], $_POST['applicable'], $isPersonal);