mirror of
https://github.com/funamitech/mastodon
synced 2024-11-30 15:58:28 +09:00
11 lines
275 B
Ruby
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
|