From e3b19598c75790758995f9db206427135d6851c2 Mon Sep 17 00:00:00 2001 From: HombreLaser Date: Fri, 3 Mar 2023 20:58:01 -0600 Subject: Renombra AuthenticationsController a SessionsController --- app/controllers/api/authentications_controller.rb | 33 ----------------------- app/controllers/api/sessions_controller.rb | 33 +++++++++++++++++++++++ 2 files changed, 33 insertions(+), 33 deletions(-) delete mode 100644 app/controllers/api/authentications_controller.rb create mode 100644 app/controllers/api/sessions_controller.rb (limited to 'app') diff --git a/app/controllers/api/authentications_controller.rb b/app/controllers/api/authentications_controller.rb deleted file mode 100644 index ba60c1a..0000000 --- a/app/controllers/api/authentications_controller.rb +++ /dev/null @@ -1,33 +0,0 @@ -# frozen_string_literal: true - -module Api - # The controller that handles authentications. - class AuthenticationsController < ApplicationController - def create - @current_user_account = UserAccount.find_by(email: permitted_params[:email]) - - unless @current_user_account&.authenticate(permitted_params[:password]) - render json: { error_message: 'Credenciales incorrectas' }, status: :unauthorized and return - end - - render json: generate_token, status: :ok - end - - def destroy - current_user_account.update_attribute(:session_key, nil) - - render status: :no_content - end - - private - - def service_params - { email: @current_user_account.email, - role: @current_user_account.role } - end - - def permitted_params - params.require(:credentials).permit(:email, :password) - end - end -end diff --git a/app/controllers/api/sessions_controller.rb b/app/controllers/api/sessions_controller.rb new file mode 100644 index 0000000..9d0e4ac --- /dev/null +++ b/app/controllers/api/sessions_controller.rb @@ -0,0 +1,33 @@ +# frozen_string_literal: true + +module Api + # The controller that handles authentications. + class SessionsController < ApplicationController + def create + @user_account = UserAccount.find_by(email: permitted_params[:email]) + + unless @user_account&.authenticate(permitted_params[:password]) + render json: { error_message: 'Credenciales incorrectas' }, status: :unauthorized and return + end + + render json: generate_token, status: :ok + end + + def destroy + user_account.update_attribute(:session_key, nil) + + render status: :no_content + end + + private + + def service_params + { email: @user_account.email, + role: @user_account.role } + end + + def permitted_params + params.require(:credentials).permit(:email, :password) + end + end +end -- cgit v1.2.3