Module: CodesHelper
- Defined in:
- app/helpers/codes_helper.rb
Instance Method Summary collapse
Instance Method Details
#admin_code_link(entity) ⇒ Object
3 4 5 |
# File 'app/helpers/codes_helper.rb', line 3 def admin_code_link(entity) link_to entity.body, admin_code_path(id: entity.id) end |
#code_types_for_select ⇒ Object
7 8 9 |
# File 'app/helpers/codes_helper.rb', line 7 def code_types_for_select CodeType.order('id asc').map { |c| [c.name, c.id] } end |