Chatwoot/lib/reports/update_account_identity.rb

11 lines
256 B
Ruby
Raw Normal View History

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