mirror of
https://github.com/funamitech/mastodon
synced 2024-12-23 19:19:12 +09:00
8 lines
141 B
Ruby
8 lines
141 B
Ruby
|
class DistributionWorker
|
||
|
include Sidekiq::Worker
|
||
|
|
||
|
def perform(status_id)
|
||
|
FanOutOnWriteService.new.(Status.find(status_id))
|
||
|
end
|
||
|
end
|