Chatwoot/lib/current.rb
Adam Zysko 65ed4c78a4
feat: Business hours
Data models and APIs for business hours

ref: #234
2020-11-01 00:14:33 +05:30

10 lines
194 B
Ruby

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