mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
15 lines
293 B
Ruby
15 lines
293 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class Maintenance::DestroyMediaWorker
|
||
|
include Sidekiq::Worker
|
||
|
|
||
|
sidekiq_options queue: 'pull'
|
||
|
|
||
|
def perform(media_attachment_id)
|
||
|
media = MediaAttachment.find(media_attachment_id)
|
||
|
media.destroy
|
||
|
rescue ActiveRecord::RecordNotFound
|
||
|
true
|
||
|
end
|
||
|
end
|