Files
leadchat/app/jobs/internal/remove_stale_contact_inboxes_job.rb
2023-11-06 20:24:30 -08:00

12 lines
281 B
Ruby

# housekeeping
# remove contact inboxes that does not have any conversations
# and are older than 3 months
class Internal::RemoveStaleContactInboxesJob < ApplicationJob
queue_as :scheduled_jobs
def perform
Internal::RemoveStaleContactInboxesService.new.perform
end
end