mirror of
https://github.com/yingziwu/mastodon.git
synced 2026-02-15 06:43:16 +00:00
15 lines
328 B
Ruby
15 lines
328 B
Ruby
# frozen_string_literal: true
|
|
|
|
class PrecomputeFeedService < BaseService
|
|
include Redisable
|
|
|
|
def call(account)
|
|
FeedManager.instance.populate_home(account)
|
|
|
|
account.owned_lists.each do |list|
|
|
FeedManager.instance.populate_list(list)
|
|
end
|
|
ensure
|
|
redis.del("account:#{account.id}:regeneration")
|
|
end
|
|
end
|