1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/app/jobs/active_storage/purge_job.rb
David Heinemeier Hansson da12346695 Nix more needless requires
2017-07-22 10:00:16 -05:00

8 lines
201 B
Ruby

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