The code powering m.abunchtell.com https://m.abunchtell.com
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 

10 řádky
220 B

  1. # frozen_string_literal: true
  2. class PrecomputeFeedService < BaseService
  3. def call(account)
  4. FeedManager.instance.populate_feed(account)
  5. ensure
  6. Redis.current.del("account:#{account.id}:regeneration")
  7. end
  8. end