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

o_auth.rb « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5ad8d83bd6e028ccc5d9dad57ba916c6adb77cbf (plain)
1
2
3
4
5
6
module Gitlab
  module OAuth
    SignupDisabledError = Class.new(StandardError)
    SigninDisabledForProviderError = Class.new(StandardError)
  end
end