mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
8eeec389c1
DistributionWorker. That isn't the heaviest service, yet, but gotta start somewhere
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
|