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

15 lines
359 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
json_response(auth_token: auth_token)
end
private
def auth_params
params.permit(:email, :password)
end
end