From 102cd0abd39cc1c5d37b56cd02454c7c0e9470b5 Mon Sep 17 00:00:00 2001 From: f Date: Fri, 26 Mar 2021 12:45:43 -0300 Subject: [PATCH] =?UTF-8?q?cerrar=20la=20sesi=C3=B3n=20del=20todo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/controllers/application_controller.rb | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb index 06a23e1..38b2b72 100644 --- a/app/controllers/application_controller.rb +++ b/app/controllers/application_controller.rb @@ -4,7 +4,7 @@ class ApplicationController < ActionController::Base include ExceptionHandler - protect_from_forgery with: forgery_method, prepend: true + protect_from_forgery with: :null_session, prepend: true before_action :prepare_exception_notifier before_action :configure_permitted_parameters, if: :devise_controller? @@ -54,10 +54,6 @@ class ApplicationController < ActionController::Base render 'application/page_not_found', status: :not_found end - def forgery_method - Rails.env.production? ? :null_session : :exception - end - protected def configure_permitted_parameters