mirror of https://github.com/glitch-soc/mastodon
17 lines
383 B
Ruby
17 lines
383 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)
|
|
|
|
account.owned_lists.each do |list|
|
|
FeedManager.instance.populate_list(list)
|
|
end
|
|
ensure
|
|
redis.del("account:#{account.id}:regeneration")
|
|
end
|
|
end
|