mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-02 04:54:25 +00:00
13 lines
288 B
Ruby
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
|