14 lines
252 B
Ruby
14 lines
252 B
Ruby
|
class APIGeoTestController < ActionController::Base
|
||
|
def regions
|
||
|
render json: [{ nom: 'Martinique' }]
|
||
|
end
|
||
|
|
||
|
def departements
|
||
|
render json: [{ nom: 'Aisne', code: '02' }]
|
||
|
end
|
||
|
|
||
|
def communes
|
||
|
render json: [{ nom: 'Ambléon' }]
|
||
|
end
|
||
|
end
|