Skip to content
Snippets Groups Projects
Commit 9a797c9f authored by Fernando Erd's avatar Fernando Erd :ok_hand:
Browse files

Add education level short

parent 780ea8c4
No related branches found
No related tags found
2 merge requests!116Release v1.0.0,!106Gloss enrollment ratio route
Pipeline #
......@@ -100,6 +100,19 @@ glossEnrollmentRatioApp.get('/extremes_household_income', (req, res, next) => {
next();
}, response('extremes_household_income'));
glossEnrollmentRatioApp.get('/education_level_short', (req, res, next) => {
req.result = [
{id: null, name: 'Não classificada'},
{id: 1, name: 'Creche'},
{id: 2, name: 'Pré-Escola'},
{id: 4, name: 'Ensino Fundamental - anos iniciais'},
{id: 5, name: 'Ensino Fundamental - anos finais'},
{id: 6, name: 'Ensino Médio'}
];
next();
}, response('education_level_short'));
rqf.addField({
name: 'filter',
field: false,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment