summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorHombreLaser <sebastian-440@live.com>2023-03-03 20:58:01 -0600
committerHombreLaser <sebastian-440@live.com>2023-03-03 20:58:01 -0600
commite3b19598c75790758995f9db206427135d6851c2 (patch)
tree3a2a87a799c746c3bd0aef4282075bfeb5bc6111 /app
parent918beb3197275af56b914250aae4950b1f64de30 (diff)
Renombra AuthenticationsController a SessionsController
Diffstat (limited to 'app')
-rw-r--r--app/controllers/api/sessions_controller.rb (renamed from app/controllers/api/authentications_controller.rb)12
1 files changed, 6 insertions, 6 deletions
diff --git a/app/controllers/api/authentications_controller.rb b/app/controllers/api/sessions_controller.rb
index ba60c1a..9d0e4ac 100644
--- a/app/controllers/api/authentications_controller.rb
+++ b/app/controllers/api/sessions_controller.rb
@@ -2,11 +2,11 @@
module Api
# The controller that handles authentications.
- class AuthenticationsController < ApplicationController
+ class SessionsController < ApplicationController
def create
- @current_user_account = UserAccount.find_by(email: permitted_params[:email])
+ @user_account = UserAccount.find_by(email: permitted_params[:email])
- unless @current_user_account&.authenticate(permitted_params[:password])
+ unless @user_account&.authenticate(permitted_params[:password])
render json: { error_message: 'Credenciales incorrectas' }, status: :unauthorized and return
end
@@ -14,7 +14,7 @@ module Api
end
def destroy
- current_user_account.update_attribute(:session_key, nil)
+ user_account.update_attribute(:session_key, nil)
render status: :no_content
end
@@ -22,8 +22,8 @@ module Api
private
def service_params
- { email: @current_user_account.email,
- role: @current_user_account.role }
+ { email: @user_account.email,
+ role: @user_account.role }
end
def permitted_params