1
0
Fork 1
mirror of https://github.com/mastodon/mastodon.git synced 2025-01-23 22:16:57 +00:00
mastodon/app/services/precompute_feed_service.rb
2019-06-27 16:44:12 +02:00

10 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