12 lines
293 B
Ruby
12 lines
293 B
Ruby
# frozen_string_literal: true
|
|
|
|
module RegistrationsHelper
|
|
def social_signin_enabled?
|
|
::Gitlab.dev_env_or_com? &&
|
|
omniauth_enabled? &&
|
|
devise_mapping.omniauthable? &&
|
|
button_based_providers_enabled?
|
|
end
|
|
end
|
|
|
|
RegistrationsHelper.prepend_mod_with('RegistrationsHelper')
|