before_filter and respond_to formats - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T07:51:58Z http://stackoverflow.com/feeds/question/809528 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/809528/beforefilter-and-respondto-formats 3 before_filter and respond_to formats gdelfino 2009-04-30T23:10:13Z 2009-05-01T00:00:44Z <p>In a controller in my Rails app, I can do this:</p> <pre><code>before_filter :login_required, :except =&gt; :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 =&gt; {:action =&gt; :index, :format =&gt; :js} </code></pre> <p>Is this possible?</p> http://stackoverflow.com/questions/809528/beforefilter-and-respondto-formats/809660#809660 4 Answer by jdl for before_filter and respond_to formats jdl 2009-05-01T00:00:44Z 2009-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 =&gt; [:index] before_filter(:only =&gt; :index) do |controller| login_required unless controller.request.format.js? end </code></pre>