1
0
mirror of https://github.com/mastodon/mastodon synced 2024-11-28 06:48:28 +09:00
mastodon/app/workers/regeneration_worker.rb

8 lines
179 B
Ruby
Raw Normal View History

2016-11-08 10:08:32 +09:00
class RegenerationWorker
include Sidekiq::Worker
def perform(account_id, timeline_type)
PrecomputeFeedService.new.call(timeline_type, Account.find(account_id))
end
end