AyuntamientoMadrid/participacion

View on GitHub
app/components/polls/geozones_component.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Polls::GeozonesComponent < ApplicationComponent
  attr_reader :poll

  def initialize(poll)
    @poll = poll
  end

  def render?
    poll.geozones.any?
  end
end