Skip to content
Snippets Groups Projects

Merge new updates into master

1 file
+ 12
1
Compare changes
  • Side-by-side
  • Inline
+ 12
1
@@ -246,7 +246,18 @@ enrollmentApp.get('/pee', (req, res, next) => {
{id: 1, name: 'Sim'}
];
next();
}, response('pee'));
}, response('pee'))
enrollmentApp.get('/pee_por_categoria', (req, res, next) => {
req.result = [];
for(let i = 1; i <= 13; ++i) {
req.result.push({
id: i,
name: id2str.peePorCategoria(i)
});
}
next();
}, response('pee_por_categoria'));
enrollmentApp.get('/age_range_all', (req, res, next) => {
req.result = [
Loading