Files
nairobi/app/components/concerns/sdg/goals/options_for_select.rb
2021-01-10 15:54:23 +01:00

8 lines
221 B
Ruby

module SDG::Goals::OptionsForSelect
extend ActiveSupport::Concern
def goal_options(selected_code = nil)
options_from_collection_for_select(SDG::Goal.order(:code), :code, :code_and_title, selected_code)
end
end