cerrar la sesión del todo

This commit is contained in:
f 2021-03-26 12:45:43 -03:00
parent 2e7c1d23f4
commit 102cd0abd3

View file

@ -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