demarches-normaliennes/app/models/champs/region_champ.rb
2018-10-23 18:13:44 +02:00

5 lines
135 B
Ruby

class Champs::RegionChamp < Champs::TextChamp
def self.regions
ApiGeo::API.regions.sort_by { |e| e[:nom] }.pluck(:nom)
end
end