Check whether the user has permissions to add personal storage backends

remotes/origin/ldap_group_count
Lukas Reschke 11 years ago
parent 982d2bcc5b
commit 2454759af7
  1. 6
      apps/files_external/lib/config.php

@ -206,6 +206,12 @@ class OC_Mount_Config {
*/ */
public static function getPersonalBackends() { public static function getPersonalBackends() {
// Check whether the user has permissions to add personal storage backends
// return an empty array if this is not the case
if(OCP\Config::getAppValue('files_external', 'allow_user_mounting', 'yes') !== 'yes') {
return array();
}
$backEnds = self::getBackends(); $backEnds = self::getBackends();
// Remove local storage and other disabled storages // Remove local storage and other disabled storages

Loading…
Cancel
Save