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
382 B
18 lines
382 B
8 years ago
|
# 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).where(status_id: nil).where('created_at < ?', 1.day.ago)
|
||
|
end
|
||
|
end
|