Gab-Social/app/workers/bootstrap_timeline_worker.rb
Fosco Marotto f873a1f925 Revert "[sidekiq] disable bootstraptimelineworker"
This reverts commit 50f010652e9573bbf48d2cbef36d1d9fc8072191.
2021-01-09 18:23:49 -05:00

10 lines
188 B
Ruby

# frozen_string_literal: true
class BootstrapTimelineWorker
include Sidekiq::Worker
def perform(account_id)
BootstrapTimelineService.new.call(Account.find(account_id))
end
end