mirror of
https://github.com/funamitech/mastodon
synced 2024-12-11 21:29:17 +09: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 |