Chatwoot/lib/reports/update_account_identity.rb

9 lines
225 B
Ruby
Raw Normal View History

class Reports::UpdateAccountIdentity < Reports::UpdateIdentity
attr_reader :account
def initialize(account, timestamp = Time.now)
super(account, timestamp)
@identity = ::AccountIdentity.new(account.id)
end
end