before_filter - How to?

Hi,

i have functions for which i use before_filter

Hi,

i have functions for which i use before_filter --------------------------------------------------------------------------- before_filter :find_customer, :except => [:index, :new, :create] ---------------------------------------------------------------------------

Do i need to use another before_filter for another set of functions like --------------------------------------------------------------------------- before_filter :countries_list, :only => [:new, :edit] ---------------------------------------------------------------------------

If you need two filters, then you need two calls to before_filter.

Fred