summaryrefslogtreecommitdiff
path: root/lib/gitlab/auth/database/authentication.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/auth/database/authentication.rb')
-rw-r--r--lib/gitlab/auth/database/authentication.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/lib/gitlab/auth/database/authentication.rb b/lib/gitlab/auth/database/authentication.rb
new file mode 100644
index 00000000000..260a77058a4
--- /dev/null
+++ b/lib/gitlab/auth/database/authentication.rb
@@ -0,0 +1,16 @@
+# 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