vote up 3 vote down star

In a controller in my Rails app, I can do this:

before_filter :login_required, :except => :index

But I would like to apply the filter not only based on the action name but on the format of the request. In other words, I would like to do something like this:

before_filter :login_required, :except => {:action => :index, :format => :js}

Is this possible?

flag

1 Answer

vote up 4 vote down check

You'll need to roll your own a bit. Try this as a starting point.

 before_filter :login_required, :except => [:index]

 before_filter(:only => :index) do |controller|
   login_required unless controller.request.format.js?
 end
link|flag
1  
Thank you for your help. I only had to replace the login_required with controller.send(:login_required) before_filter(:only => :index) do |controller| controller.send(:login_required) unless controller.request.format.js? end – gdelfino May 1 at 23:31
Let me repeat my comment as the code didn't show up as I was expecting. I only had to replace the login_required with controller.send(:login_required) Thanks. – gdelfino May 1 at 23:34

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.