bootstrap_timeline_worker.rb 188 B

123456789
  1. # frozen_string_literal: true
  2. class BootstrapTimelineWorker
  3. include Sidekiq::Worker
  4. def perform(account_id)
  5. BootstrapTimelineService.new.call(Account.find(account_id))
  6. end
  7. end