2020-11-13 14:34:53 +01:00
|
|
|
class Cron::PurgeUnattachedBlobsJob < Cron::CronJob
|
2020-04-01 15:26:46 +02:00
|
|
|
self.schedule_expression = "every day at midnight"
|
2019-05-21 11:42:21 +02:00
|
|
|
|
|
|
|
def perform(*args)
|
|
|
|
ActiveStorage::Blob.unattached
|
|
|
|
.where('active_storage_blobs.created_at < ?', 24.hours.ago)
|
|
|
|
.find_each(&:purge_later)
|
|
|
|
end
|
|
|
|
end
|