summaryrefslogtreecommitdiff
path: root/lib/api/session.rb
diff options
context:
space:
mode:
authorDouwe Maan <douwe@selenight.nl>2017-10-12 10:24:59 +0200
committerDouwe Maan <douwe@selenight.nl>2017-11-02 11:39:01 +0100
commita72d687931fa5be3b8828fa202e61d42c607dae1 (patch)
tree20ca486ace5d7462e6bc5069a6f2169d3c12c026 /lib/api/session.rb
parent4b93429a4e7161460ecde6b0cf56480b03e8e600 (diff)
downloadgitlab-ce-a72d687931fa5be3b8828fa202e61d42c607dae1.tar.gz
Remove Session API
Diffstat (limited to 'lib/api/session.rb')
-rw-r--r--lib/api/session.rb20
1 files changed, 0 insertions, 20 deletions
diff --git a/lib/api/session.rb b/lib/api/session.rb
deleted file mode 100644
index 016415c3023..00000000000
--- a/lib/api/session.rb
+++ /dev/null
@@ -1,20 +0,0 @@
-module API
- class Session < Grape::API
- desc 'Login to get token' do
- success Entities::UserWithPrivateDetails
- end
- params do
- optional :login, type: String, desc: 'The username'
- optional :email, type: String, desc: 'The email of the user'
- requires :password, type: String, desc: 'The password of the user'
- at_least_one_of :login, :email
- end
- post "/session" do
- user = Gitlab::Auth.find_with_user_password(params[:email] || params[:login], params[:password])
-
- return unauthorized! unless user
- return render_api_error!('401 Unauthorized. You have 2FA enabled. Please use a personal access token to access the API', 401) if user.two_factor_enabled?
- present user, with: Entities::UserWithPrivateDetails
- end
- end
-end