0
0
Fork 0
mirror of https://github.com/lunaisnotaboy/mastodon.git synced 2025-01-07 13:07:13 +00:00
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