1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-01-17 21:22:55 -05:00

13 lines
225 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class HomeFeed < Feed
def initialize(account)
@account = account
super(:home, account.id)
end
def regenerating?
redis.exists?("account:#{@account.id}:regeneration")
end
end