Gab-Social/app/workers/bootstrap_timeline_worker.rb

10 lines
188 B
Ruby
Raw Normal View History

2019-07-02 07:10:25 +00:00
# frozen_string_literal: true
class BootstrapTimelineWorker
include Sidekiq::Worker
def perform(account_id)
BootstrapTimelineService.new.call(Account.find(account_id))
2019-07-02 07:10:25 +00:00
end
end