factorize departements and regions options

This commit is contained in:
simon lehericey 2024-11-07 10:27:35 +01:00
parent aa8ce15c2a
commit 08fb49d176
No known key found for this signature in database
GPG key ID: CDE670D827C7B3C5
13 changed files with 27 additions and 26 deletions

View file

@ -10,7 +10,7 @@ class EditableChamp::DepartementsComponent < EditableChamp::EditableChampBaseCom
end
def options
APIGeoService.departements.map { ["#{_1[:code]} #{_1[:name]}", _1[:code]] }
APIGeoService.departement_options
end
def select_options

View file

@ -10,7 +10,7 @@ class EditableChamp::RegionsComponent < EditableChamp::EditableChampBaseComponen
private
def options
APIGeoService.regions.map { [_1[:name], _1[:code]] }
APIGeoService.region_options
end
def select_options