vereto-api/app/controllers/authentication_controller.rb
2018-02-19 16:03:07 +00:00

16 lines
421 B
Ruby

class AuthenticationController < ApplicationController
skip_before_action :authorize_request, only: :authenticate
def authenticate
auth_token =
AuthenticateUser.new(auth_params[:email], auth_params[:password]).call
user = User.find_by(email: auth_params[:email])
json_response(auth_token: auth_token, user: user)
end
private
def auth_params
params.permit(:email, :password)
end
end