12 lines
281 B
Ruby
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
|