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 that and keeps me on the view that's I've setup in the before_filter. Is there any way for me to specify which controllers should be excluded from the application controller or some other file?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You can qualify a filter with
Or if the filter (as I now see is the case in your situation) is defined in
|
||||
|
|
|
In the controller where you want to skip a before filter specified in an inherited controller, you can tell rails to skip the filter
|
|||
|
|
|
In config/application.rb
Referenced by: How to skip a before_filter for Devise's SessionsController? |
|||
|
|
