budget/app/helpers/incomes_helper.rb
Andrew Tomaka 72ffe7215d
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
Start running Rails from the main branch (#16)
Reviewed-on: #16
2024-06-21 23:35:36 -04:00

7 lines
125 B
Ruby

module IncomesHelper
def members
Member
.all
.map { |member, value| [ member.name, member.id ] }
end
end