mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-03 05:24:29 +00:00
f90133d2ad
since that is only ever called in the background
10 lines
170 B
Ruby
10 lines
170 B
Ruby
# frozen_string_literal: true
|
|
|
|
class RemovalWorker
|
|
include Sidekiq::Worker
|
|
|
|
def perform(status_id)
|
|
RemoveStatusService.new.call(Status.find(status_id))
|
|
end
|
|
end
|