mirror of
https://github.com/mastodon/mastodon
synced 2025-04-12 00:56:38 +02:00
9 lines
169 B
Ruby
9 lines
169 B
Ruby
# frozen_string_literal: true
|
|
|
|
class RemovalWorker
|
|
include Sidekiq::Worker
|
|
|
|
def perform(status_id)
|
|
RemoveStatusService.new.call(Status.find(status_id))
|
|
end
|
|
end |