How can I use a before_filter in the ApplicationController? My code
(below) does work in any controller, but not the
ApplicationController, where the set_time_zone method is not being
invoked. What am I doing wrong?

Any help is greatly appreciated!

class ApplicationController < ActionController::Base

  helper :all # include all helpers, all the time
  protect_from_forgery # See
ActionController::RequestForgeryProtection for details

  # Scrub sensitive parameters from your log
  # filter_parameter_logging :password

  before_filter :set_time_zone

  def set_time_zone
    puts "*** Application Controller before_filter"
    user_tz = @current_user.try.time_zone
    Time.zone = user_tz if user_tz
  end

end

-- 
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.

Reply via email to