diff options
author | Robin Appelman <icewind@owncloud.com> | 2016-02-17 13:55:27 +0100 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2016-02-17 13:55:27 +0100 |
commit | c2c6caee93c491de9fa9a2e7c2eea036f4974e61 (patch) | |
tree | 7b9d975c1257d757593fc1f2c19ddac1dc16dde9 /apps/files_external/settings.php | |
parent | 7b0f83b616246c5274b551ab46b923b0989c464e (diff) | |
download | nextcloud-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.php | 3 |
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(); |