diff options
author | Robin Appelman <robin@icewind.nl> | 2019-08-19 13:59:34 +0200 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2019-09-09 16:51:24 +0200 |
commit | 1d51b297a908d427016983b45924834f6dfd95c7 (patch) | |
tree | 7f128f999f3672999a414ba9c97dcb152f8e3862 /apps/files_external/lib/AppInfo | |
parent | 507eb30e1d7ab2ea31934796621cd6614c2af750 (diff) | |
download | nextcloud-server-1d51b297a908d427016983b45924834f6dfd95c7.tar.gz nextcloud-server-1d51b297a908d427016983b45924834f6dfd95c7.zip |
Allow admin configured mounts to use user configured global credentials
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'apps/files_external/lib/AppInfo')
-rw-r--r-- | apps/files_external/lib/AppInfo/Application.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/files_external/lib/AppInfo/Application.php b/apps/files_external/lib/AppInfo/Application.php index 7a9325414d8..57ef28f2ae0 100644 --- a/apps/files_external/lib/AppInfo/Application.php +++ b/apps/files_external/lib/AppInfo/Application.php @@ -45,6 +45,7 @@ use OCA\Files_External\Lib\Auth\PublicKey\RSA; use OCA\Files_External\Lib\Auth\OAuth2\OAuth2; use OCA\Files_External\Lib\Auth\OAuth1\OAuth1; use OCA\Files_External\Lib\Auth\Password\GlobalAuth; +use OCA\Files_External\Lib\Auth\Password\UserGlobalAuth; use OCA\Files_External\Lib\Auth\Password\UserProvided; use OCA\Files_External\Lib\Auth\Password\LoginCredentials; use OCA\Files_External\Lib\Auth\Password\SessionCredentials; @@ -136,6 +137,7 @@ class Application extends App implements IBackendProvider, IAuthMechanismProvide $container->query(LoginCredentials::class), $container->query(UserProvided::class), $container->query(GlobalAuth::class), + $container->query(UserGlobalAuth::class), // AuthMechanism::SCHEME_OAUTH1 mechanisms $container->query(OAuth1::class), |