17 lines
417 B
Ruby
17 lines
417 B
Ruby
|
# These calls help to authenticate to OAuth provider by providing username and password
|
||
|
#
|
||
|
|
||
|
module Gitlab
|
||
|
module Auth
|
||
|
module Database
|
||
|
class Authentication < Gitlab::Auth::OAuth::Authentication
|
||
|
def login(login, password)
|
||
|
return false unless Gitlab::CurrentSettings.password_authentication_enabled_for_git?
|
||
|
|
||
|
user&.valid_password?(password)
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|