This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-05-20 10:42:58 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Scheduler::MediaCleanupScheduler
|
|
|
|
include Sidekiq::Worker
|
|
|
|
|
2018-08-19 06:48:29 -07:00
|
|
|
sidekiq_options unique: :until_executed
|
|
|
|
|
2017-05-20 10:42:58 -07:00
|
|
|
def perform
|
|
|
|
unattached_media.find_each(&:destroy)
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def unattached_media
|
2017-05-22 10:36:21 -07:00
|
|
|
MediaAttachment.reorder(nil).unattached.where('created_at < ?', 1.day.ago)
|
2017-05-20 10:42:58 -07:00
|
|
|
end
|
|
|
|
end
|