Chatwoot/lib/current.rb

11 lines
194 B
Ruby
Raw Normal View History

module Current
thread_mattr_accessor :user
thread_mattr_accessor :account
thread_mattr_accessor :account_user
def account=(account)
super
Time.zone = account.timezone
end
end