chatwoot-develop/app/jobs/agent_bots/webhook_job.rb

8 lines
170 B
Ruby
Executable File

class AgentBots::WebhookJob < WebhookJob
queue_as :high
def perform(url, payload, webhook_type = :agent_bot_webhook)
super(url, payload, webhook_type)
end
end