~cytrogen/masto-fe

ref: 9ac9aca142bb976f9188bcd7a70b4bdc302eaf89 masto-fe/app/services/precompute_feed_service.rb -rw-r--r-- 233 bytes
9ac9aca1 — renovate[bot] Update dependency test-prof to v1.2.3 (#26894) 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