before_filter and respond_to formats - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T07:51:58Zhttp://stackoverflow.com/feeds/question/809528http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/809528/beforefilter-and-respondto-formats3before_filter and respond_to formatsgdelfino2009-04-30T23:10:13Z2009-05-01T00:00:44Z
<p>In a controller in my Rails app, I can do this:</p>
<pre><code>before_filter :login_required, :except => :index
</code></pre>
<p>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:</p>
<pre><code>before_filter :login_required, :except => {:action => :index, :format => :js}
</code></pre>
<p>Is this possible?</p>
http://stackoverflow.com/questions/809528/beforefilter-and-respondto-formats/809660#8096604Answer by jdl for before_filter and respond_to formatsjdl2009-05-01T00:00:44Z2009-05-01T00:00:44Z<p>You'll need to roll your own a bit. Try this as a starting point.</p>
<pre><code> before_filter :login_required, :except => [:index]
before_filter(:only => :index) do |controller|
login_required unless controller.request.format.js?
end
</code></pre>