I have a couple of methods called from Ajax. Is there a way I can say
skip_all_filters or something for these methods or do I tediously have
to do several skip_before_filter :x, :only => :y?
phil,
Check this out:
http://markmcb.com/2008/10/14/skip-all-rails-filters/
Basically you use one method to tell Rails you want to skip filters, and
a separate method to provide the complete list of filters to skip.