views:

104

answers:

1

I use a before_filter in the application controller. This filter should be used for every controller except two actions in one controller.

How can I define this exception?

Thanks!

+4  A: 

Use skip_before_filter.

Simone Carletti