~cytrogen/masto-fe

ref: 5f2d494f0d072abc5360b170076d13b87aa150f5 masto-fe/app/services/precompute_feed_service.rb -rw-r--r-- 233 bytes
5f2d494f — renovate[bot] Update dependency react-redux to v8.1.3 (#27229) 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

class PrecomputeFeedService < BaseService
  include Redisable

  def call(account)
    FeedManager.instance.populate_home(account)
  ensure
    redis.del("account:#{account.id}:regeneration")
  end
end