blob: f2fb9935d1994b21155166540ff571f9cb27c1ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# frozen_string_literal: true
module Api
# The controller that handles authentications.
class AuthenticationsController < ApplicationController
AUTHENTICATION_ERROR = 'Credenciales incorrectas'
def create
@logic = logic
@token = @logic.call
render json: @token && return if @token
render json: { message: AUTHENTICATION_ERROR}, status: :unauthorized
end
def destroy; end
def refresh; end
private
def permitted_params
params.require(:user_account).permit(:email, :password)
end
def service
@service = Services::AuthenticationService.new(permitted_params)
end
end
end
|