1
0
This repository has been archived on 2023-12-07. You can view files and clone it, but cannot push or open issues or pull requests.
body_tracking/app/helpers/units_helper.rb
2019-08-15 22:30:15 +02:00

7 lines
136 B
Ruby

module UnitsHelper
def type_options
translations = t('.types')
Unit.types.map { |k,v| [translations[k.to_sym], k] }
end
end