1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-01-26 09:32:57 -05:00
2019-06-27 16:44:12 +02:00

11 lines
275 B
Ruby

# frozen_string_literal: true
class PrecomputeFeedService < BaseService
def call(account)
FeedManager.instance.populate_feed(account)
FeedManager.instance.populate_direct_feed(account)
ensure
Redis.current.del("account:#{account.id}:regeneration")
end
end