consul/consul

View on GitHub
app/components/admin/budgets/show_component.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Admin::Budgets::ShowComponent < ApplicationComponent
  include Header
  attr_reader :budget

  def initialize(budget)
    @budget = budget
  end

  private

    def title
      budget.name
    end
end