Chatwoot/app/jobs/account/conversations_resolution_scheduler_job.rb
2021-11-27 09:26:18 +05:30

9 lines
267 B
Ruby

class Account::ConversationsResolutionSchedulerJob < ApplicationJob
queue_as :scheduled_jobs
def perform
Account.where.not(auto_resolve_duration: nil).all.each do |account|
Conversations::ResolutionJob.perform_later(account: account)
end
end
end