> i.e. i want something like
>
> before_filter :set_extension, :except => [:phone_extensions_grab]
Is this in the ApplicationController, and you want the :except to apply to
PhoneExtensionsController only?
You just declare the before_filter again in PhoneExtensionsController, like
this:
before_filter :set_extension, :except => :grab
(and no :except in ApplicationController)
Tom
--
You received this message because you are subscribed to the Google Groups "Hobo
Users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/hobousers?hl=en.