cfa0149564
Add a beacon to persist timezones when these change (or the first time)
20 lines
392 B
Ruby
20 lines
392 B
Ruby
module CurrentTimezone
|
|
extend ActiveSupport::Concern
|
|
|
|
included do
|
|
around_action :set_current_timezone
|
|
|
|
helper_method :timezone_from_cookie
|
|
end
|
|
|
|
private
|
|
def set_current_timezone(&)
|
|
Time.use_zone(timezone_from_cookie, &)
|
|
end
|
|
|
|
def timezone_from_cookie
|
|
timezone = cookies[:timezone]
|
|
ActiveSupport::TimeZone[timezone] if timezone.present?
|
|
end
|
|
end
|