This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2018-05-30 12:09:30 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Maintenance::DestroyMediaWorker
|
|
|
|
include Sidekiq::Worker
|
|
|
|
|
|
|
|
sidekiq_options queue: 'pull'
|
|
|
|
|
|
|
|
def perform(media_attachment_id)
|
2018-08-25 04:25:39 -07:00
|
|
|
media = media_attachment_id.is_a?(MediaAttachment) ? media_attachment_id : MediaAttachment.find(media_attachment_id)
|
2018-05-30 12:09:30 -07:00
|
|
|
media.destroy
|
|
|
|
rescue ActiveRecord::RecordNotFound
|
|
|
|
true
|
|
|
|
end
|
|
|
|
end
|