Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/helpers/auth_helper.rb')
-rw-r--r--app/helpers/auth_helper.rb9
1 files changed, 4 insertions, 5 deletions
diff --git a/app/helpers/auth_helper.rb b/app/helpers/auth_helper.rb
index c928c6479de..b7acc562be5 100644
--- a/app/helpers/auth_helper.rb
+++ b/app/helpers/auth_helper.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
module AuthHelper
- PROVIDERS_WITH_ICONS = %w(
+ PROVIDERS_WITH_ICONS = %w[
alicloud
atlassian_oauth2
auth0
@@ -15,12 +15,11 @@ module AuthHelper
google_oauth2
jwt
openid_connect
- salesforce
shibboleth
twitter
- ).freeze
- LDAP_PROVIDER = /\Aldap/.freeze
- POPULAR_PROVIDERS = %w(google_oauth2 github).freeze
+ ].freeze
+ LDAP_PROVIDER = /\Aldap/
+ POPULAR_PROVIDERS = %w[google_oauth2 github].freeze
delegate :slack_app_id, to: :'Gitlab::CurrentSettings.current_application_settings'