Chatwoot/lib/current.rb

12 lines
224 B
Ruby
Raw Normal View History

module Current
thread_mattr_accessor :user
thread_mattr_accessor :account
thread_mattr_accessor :account_user
2021-01-14 15:05:22 +00:00
def self.reset
Current.user = nil
Current.account = nil
Current.account_user = nil
end
end