about summary refs log blame commit diff
path: root/app/workers/maintenance/destroy_media_worker.rb
blob: cde33d6d79a53df409cdb49c72ff7ea10e3e9351 (plain) (tree)
1
2
3
4
5
6
7
8
9






                                     
                                                                                                                        



                                     
# frozen_string_literal: true

class Maintenance::DestroyMediaWorker
  include Sidekiq::Worker

  sidekiq_options queue: 'pull'

  def perform(media_attachment_id)
    media = media_attachment_id.is_a?(MediaAttachment) ? media_attachment_id : MediaAttachment.find(media_attachment_id)
    media.destroy
  rescue ActiveRecord::RecordNotFound
    true
  end
end