Class: ActiveStorage::PurgeAttachmentWorker

Inherits:
Object
  • Object
show all
Includes:
Sidekiq::Worker
Defined in:
app/jobs/active_storage/purge_attachment_worker.rb

Instance Method Summary collapse

Instance Method Details

#perform(attachment_id) ⇒ Object



6
7
8
# File 'app/jobs/active_storage/purge_attachment_worker.rb', line 6

def perform(attachment_id)
  ActiveStorage::Attachment.where(id: attachment_id).first&.purge
end