mirror of
https://iceshrimp.dev/blueb/Chuckya-fe-standalone.git
synced 2026-01-19 07:18:01 -08:00
12 lines
288 B
Ruby
12 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
|