e166e5747c
Enable frozen string for the following files: * lib/gitlab/auth/**/*.rb * lib/gitlab/badge/**/*.rb * lib/gitlab/bare_repository_import/**/*.rb * lib/gitlab/bitbucket_import/**/*.rb * lib/gitlab/bitbucket_server_import/**/*.rb * lib/gitlab/cache/**/*.rb * lib/gitlab/checks/**/*.rb Partially addresses #47424.
24 lines
524 B
Ruby
24 lines
524 B
Ruby
# frozen_string_literal: true
|
|
|
|
# These calls help to authenticate to OAuth provider by providing username and password
|
|
#
|
|
|
|
module Gitlab
|
|
module Auth
|
|
module OAuth
|
|
class Authentication
|
|
attr_reader :provider, :user
|
|
|
|
def initialize(provider, user = nil)
|
|
@provider = provider
|
|
@user = user
|
|
end
|
|
|
|
# Implementation must return user object if login successful
|
|
def login(login, password)
|
|
raise NotImplementedError
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|