mastodon/app/services/precompute_feed_service.rb

13 lines
288 B
Ruby

# frozen_string_literal: true
class PrecomputeFeedService < BaseService
include Redisable
def call(account)
FeedManager.instance.populate_home(account)
FeedManager.instance.populate_direct_feed(account)
ensure
redis.del("account:#{account.id}:regeneration")
end
end