5 lines
149 B
Ruby
5 lines
149 B
Ruby
class Champs::RegionChamp < Champs::TextChamp
|
|
def self.regions
|
|
JSON.parse(ApiGeo::API.regions).sort_by { |e| e['nom'] }.pluck("nom")
|
|
end
|
|
end
|