AyuntamientoMadrid/participacion

View on GitHub
app/components/budgets/groups/index_component.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Budgets::Groups::IndexComponent < ApplicationComponent
  include Header
  attr_reader :budget

  def initialize(budget)
    @budget = budget
  end

  def title
    t("budgets.groups.show.title")
  end
end