mirror of
https://iceshrimp.dev/blueb/Chuckya-fe-standalone.git
synced 2026-01-11 21:43:15 -08:00
11 lines
273 B
Ruby
11 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
|