Files
nairobi/app/helpers/budget_headings_helper.rb
2016-09-06 17:03:35 +02:00

7 lines
146 B
Ruby

module BudgetHeadingsHelper
def budget_heading_select_options(budget)
budget.headings.map {|heading| [heading.name, heading.id]}
end
end