mirror of
https://github.com/mastodon/mastodon.git
synced 2025-02-02 15:31:40 +01:00
16 lines
328 B
Ruby
16 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
|