AgileVentures/osra

View on GitHub
app/helpers/country_helper.rb

Summary

Maintainability
A
0 mins
Test Coverage
module CountryHelper
  def country_options_for_select
    Sponsor.distinct.pluck(:country).each_with_object({}) do |c, h|
      h[ISO3166::Country[c].name] = c
    end
  end
end