4260441f8c
Tech debt clean up Fixes #4057 Co-authored-by: Aswin Dev P S <aswin@chatwoot.com>
23 lines
654 B
Ruby
23 lines
654 B
Ruby
class AsyncDispatcher < BaseDispatcher
|
|
def dispatch(event_name, timestamp, data)
|
|
EventDispatcherJob.perform_later(event_name, timestamp, data)
|
|
end
|
|
|
|
def publish_event(event_name, timestamp, data)
|
|
event_object = Events::Base.new(event_name, timestamp, data)
|
|
publish(event_object.method_name, event_object)
|
|
end
|
|
|
|
def listeners
|
|
[
|
|
CampaignListener.instance,
|
|
CsatSurveyListener.instance,
|
|
HookListener.instance,
|
|
InstallationWebhookListener.instance,
|
|
NotificationListener.instance,
|
|
ReportingEventListener.instance,
|
|
WebhookListener.instance,
|
|
AutomationRuleListener.instance
|
|
]
|
|
end
|
|
end
|