blob: 188840f70277a6626da5d972ea1eb4c1d6e4d6f9 (
plain) (
tree)
|
|
# frozen_string_literal: true
# Provides asynchronous 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
|