logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe git clone https://anongit.hacktivis.me/git/mastofe.git/

bootstrap_timeline_worker.rb (188B)


  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