mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-02 13:04:37 +00:00
793eea2982
./bin/tootctl media remove --days 7 --background Make the old rake task point to it
15 lines
360 B
Ruby
15 lines
360 B
Ruby
# 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
|