glitch-soc/mastodon

View on GitHub
app/models/home_feed.rb

Summary

Maintainability
A
0 mins
Test Coverage
# 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