Restructure omni services and add Chatwoot research snapshot
This commit is contained in:
25
research/chatwoot/app/jobs/trigger_scheduled_items_job.rb
Normal file
25
research/chatwoot/app/jobs/trigger_scheduled_items_job.rb
Normal file
@@ -0,0 +1,25 @@
|
||||
class TriggerScheduledItemsJob < ApplicationJob
|
||||
queue_as :scheduled_jobs
|
||||
|
||||
def perform
|
||||
# trigger the scheduled campaign jobs
|
||||
Campaign.where(campaign_type: :one_off,
|
||||
campaign_status: :active).where(scheduled_at: 3.days.ago..Time.current).all.find_each(batch_size: 100) do |campaign|
|
||||
Campaigns::TriggerOneoffCampaignJob.perform_later(campaign)
|
||||
end
|
||||
|
||||
# Job to reopen snoozed conversations
|
||||
Conversations::ReopenSnoozedConversationsJob.perform_later
|
||||
|
||||
# Job to reopen snoozed notifications
|
||||
Notification::ReopenSnoozedNotificationsJob.perform_later
|
||||
|
||||
# Job to auto-resolve conversations
|
||||
Account::ConversationsResolutionSchedulerJob.perform_later
|
||||
|
||||
# Job to sync whatsapp templates
|
||||
Channels::Whatsapp::TemplatesSyncSchedulerJob.perform_later
|
||||
end
|
||||
end
|
||||
|
||||
TriggerScheduledItemsJob.prepend_mod_with('TriggerScheduledItemsJob')
|
||||
Reference in New Issue
Block a user