I\'m using devise for authentication and have some before_filters in my application controller. Issue I\'m seeing is that when I try to logout the before_filter intercepts t
In config/application.rb
config.to_prepare do Devise::SessionsController.skip_before_filter :authenticate_user! end
Referenced by:
How to skip a before_filter for Devise's SessionsController?