mastodon/app/workers/regeneration_worker.rb

12 lines
273 B
Ruby

# frozen_string_literal: true
class RegenerationWorker
include Sidekiq::Worker
sidekiq_options queue: 'pull', backtrace: true, unique: :until_executed
def perform(account_id, _ = :home)
PrecomputeFeedService.new.call(:home, Account.find(account_id))
end
end