Skip to content
Snippets Groups Projects
Commit 86cc749e authored by Fernando Gbur dos Santos's avatar Fernando Gbur dos Santos
Browse files

[FIX] /adm_dependency route values fixed

parent 3325801a
No related branches found
No related tags found
3 merge requests!391Hom -> Prod,!386Merge development -> homologa,!385Merge new_pnad -> development
......@@ -87,11 +87,12 @@ PnadNovoApp.get('/instruction_level', (req, res, next) => {
PnadNovoApp.get('/adm_dependency', (req, res, next) => {
req.result = []
for (let i = 1; i < 4; i++) {
for (let i = 1; i < 3; i++) {
req.result.push({
id: i, name: id2str.newPnadAdmDependency(i)
});
}
req.result.push({id: 99, name: id2str.newPnadAdmDependency(99)});
next();
}, response('adm_dependency'));
......
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