aboutsummaryrefslogtreecommitdiffstats
path: root/app/jobs/active_storage/purge_job.rb
blob: b59d3687f81bd8d8f372dba4962eff47dd7e626a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
require "active_job"

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