2014-09-02 18:07:02 +05:30
|
|
|
module API
|
|
|
|
# Users API
|
|
|
|
class Session < Grape::API
|
|
|
|
# Login to get token
|
|
|
|
#
|
|
|
|
# Parameters:
|
|
|
|
# login (*required) - user login
|
|
|
|
# email (*required) - user email
|
|
|
|
# password (required) - user password
|
|
|
|
#
|
|
|
|
# Example Request:
|
|
|
|
# POST /session
|
|
|
|
post "/session" do
|
2016-06-16 23:09:34 +05:30
|
|
|
user = Gitlab::Auth.find_with_user_password(params[:email] || params[:login], params[:password])
|
2014-09-02 18:07:02 +05:30
|
|
|
|
|
|
|
return unauthorized! unless user
|
2016-09-13 17:45:13 +05:30
|
|
|
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?
|
2014-09-02 18:07:02 +05:30
|
|
|
present user, with: Entities::UserLogin
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|