2017-11-18 10:16:48 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class HomeFeed < Feed
|
|
|
|
def initialize(account)
|
|
|
|
@account = account
|
2021-01-07 19:40:55 +11:00
|
|
|
super(:home, account.id)
|
2017-11-18 10:16:48 +11:00
|
|
|
end
|
|
|
|
|
2019-10-07 07:11:17 +11:00
|
|
|
def regenerating?
|
2021-01-07 19:40:55 +11:00
|
|
|
redis.exists?("account:#{@account.id}:regeneration")
|
2017-11-18 10:16:48 +11:00
|
|
|
end
|
|
|
|
end
|