aboutsummaryrefslogtreecommitdiffstats
path: root/activestorage/app/jobs/active_storage/purge_job.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activestorage/app/jobs/active_storage/purge_job.rb')
-rw-r--r--activestorage/app/jobs/active_storage/purge_job.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/activestorage/app/jobs/active_storage/purge_job.rb b/activestorage/app/jobs/active_storage/purge_job.rb
new file mode 100644
index 0000000000..815f908e6c
--- /dev/null
+++ b/activestorage/app/jobs/active_storage/purge_job.rb
@@ -0,0 +1,9 @@
+# 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