aboutsummaryrefslogtreecommitdiffstats
path: root/activestorage/app/jobs/active_storage/purge_job.rb
blob: 815f908e6c3b929e36f69eb8c1b7a10005f7b390 (plain) (blame)
1
2
3
4
5
6
7
8
9
# Provides delayed purging of attachments or blobs using their `#purge_later` method.
class ActiveStorage::PurgeJob < ActiveJob::Base
  # FIXME: Limit this to a custom ActiveStorage error
  retry_on StandardError

  def perform(attachment_or_blob)
    attachment_or_blob.purge
  end
end