4493ec0880
[10.3] Prevent login with disabled OAuth providers See merge request gitlab/gitlabhq!2296 (cherry picked from commit 4936650427ffc88e6ee927aedbb2c724d24b094c) a0f9d222 Prevents login with disabled OAuth providers
6 lines
152 B
Ruby
6 lines
152 B
Ruby
module Gitlab
|
|
module OAuth
|
|
SignupDisabledError = Class.new(StandardError)
|
|
SigninDisabledForProviderError = Class.new(StandardError)
|
|
end
|
|
end
|