aboutsummaryrefslogtreecommitdiffstats
path: root/activestorage/app/jobs/active_storage/purge_job.rb
blob: 990ab27c9f34044b1c8a2b71e9a984ee3592f419 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

# Provides delayed purging of ActiveStorage::Blob records via ActiveStorage::Blob#purge_later.
class ActiveStorage::PurgeJob < ActiveJob::Base
  # FIXME: Limit this to a custom ActiveStorage error
  retry_on StandardError

  def perform(blob)
    blob.purge
  end
end