aboutsummaryrefslogblamecommitdiffstats
path: root/activestorage/app/jobs/active_storage/purge_job.rb
blob: 404ccefd0553d5fe200c4d3f3df66ed3b0518e76 (plain) (tree)
1
2
3
4
5
6
7
8
9

                             
                                                                                     

                                                     
                        
 

                                 

     
# frozen_string_literal: true

# 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