This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
|
# 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
|