refactor(files_external): Drop oauth1 auth mechanism registration

Signed-off-by: Josh <josh.t.richards@gmail.com>
pull/54328/head
Josh 9 months ago committed by GitHub
parent e37bc0b580
commit 2b21913015
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 4
      apps/files_external/lib/AppInfo/Application.php

@ -14,7 +14,6 @@ use OCA\Files_External\ConfigLexicon;
use OCA\Files_External\Lib\Auth\AmazonS3\AccessKey;
use OCA\Files_External\Lib\Auth\Builtin;
use OCA\Files_External\Lib\Auth\NullMechanism;
use OCA\Files_External\Lib\Auth\OAuth1\OAuth1;
use OCA\Files_External\Lib\Auth\OAuth2\OAuth2;
use OCA\Files_External\Lib\Auth\OpenStack\OpenStackV2;
use OCA\Files_External\Lib\Auth\OpenStack\OpenStackV3;
@ -136,9 +135,6 @@ class Application extends App implements IBackendProvider, IAuthMechanismProvide
$container->get(GlobalAuth::class),
$container->get(UserGlobalAuth::class),
// AuthMechanism::SCHEME_OAUTH1 mechanisms
$container->get(OAuth1::class),
// AuthMechanism::SCHEME_OAUTH2 mechanisms
$container->get(OAuth2::class),

Loading…
Cancel
Save