You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
371 B
18 lines
371 B
# frozen_string_literal: true
|
|
require 'sidekiq-scheduler'
|
|
|
|
class Scheduler::MediaCleanupScheduler
|
|
include Sidekiq::Worker
|
|
|
|
def perform
|
|
logger.info 'Cleaning out unattached media attachments'
|
|
unattached_media.find_each(&:destroy)
|
|
end
|
|
|
|
private
|
|
|
|
def unattached_media
|
|
MediaAttachment.reorder(nil).unattached.where('created_at < ?', 1.day.ago)
|
|
end
|
|
end
|