summaryrefslogtreecommitdiffstats
path: root/apps/files_external/settings.php
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2016-02-17 13:55:27 +0100
committerRobin Appelman <icewind@owncloud.com>2016-02-17 13:55:27 +0100
commitc2c6caee93c491de9fa9a2e7c2eea036f4974e61 (patch)
tree7b9d975c1257d757593fc1f2c19ddac1dc16dde9 /apps/files_external/settings.php
parent7b0f83b616246c5274b551ab46b923b0989c464e (diff)
downloadnextcloud-server-c2c6caee93c491de9fa9a2e7c2eea036f4974e61.tar.gz
nextcloud-server-c2c6caee93c491de9fa9a2e7c2eea036f4974e61.zip
remove global credentials
Diffstat (limited to 'apps/files_external/settings.php')
-rw-r--r--apps/files_external/settings.php3
1 files changed, 0 insertions, 3 deletions
diff --git a/apps/files_external/settings.php b/apps/files_external/settings.php
index a5265c500d9..5bc330ff189 100644
--- a/apps/files_external/settings.php
+++ b/apps/files_external/settings.php
@@ -32,7 +32,6 @@ use \OCA\Files_External\Service\BackendService;
$appContainer = \OC_Mount_Config::$app->getContainer();
$backendService = $appContainer->query('OCA\Files_External\Service\BackendService');
$globalStoragesService = $appContainer->query('OCA\Files_external\Service\GlobalStoragesService');
-$globalAuth = $appContainer->query('OCA\Files_External\Lib\Auth\Password\GlobalAuth');
\OC_Util::addVendorScript('select2/select2');
\OC_Util::addVendorStyle('select2/select2');
@@ -46,6 +45,4 @@ $tmpl->assign('authMechanisms', $backendService->getAuthMechanisms());
$tmpl->assign('dependencies', OC_Mount_Config::dependencyMessage($backendService->getBackends()));
$tmpl->assign('allowUserMounting', $backendService->isUserMountingAllowed());
$tmpl->assign('allowUserMounting', $backendService->isUserMountingAllowed());
-$tmpl->assign('globalCredentials', $globalAuth->getAuth(''));
-$tmpl->assign('globalCredentialsUid', '');
return $tmpl->fetchPage();