mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-01 03:27:52 +00:00
* Avoid extra string alocation as join will always return string * Fix indentation * Sprinkle frozen string literal true
12 lines
308 B
Ruby
12 lines
308 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Reports::UpdateAgentIdentity < Reports::UpdateIdentity
|
|
attr_reader :agent
|
|
|
|
def initialize(account, agent, timestamp = Time.now)
|
|
super(account, timestamp)
|
|
@agent = agent
|
|
@identity = ::AgentIdentity.new(agent.id, tags: { account_id: account.id })
|
|
end
|
|
end
|