# 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