Skip to content
Snippets Groups Projects
Commit 5b463058 authored by Vytor Calixto's avatar Vytor Calixto :space_invader:
Browse files

Add route /teacher/years

parent 1f57d86d
No related branches found
No related tags found
2 merge requests!116Release v1.0.0,!67#296: Nova resposta para os anos da API
Pipeline #
......@@ -26,6 +26,12 @@ teacherApp.get('/year_range', (req, res, next) => {
next();
}, query, response('range'));
teacherApp.get('/years', (req, res, next) => {
req.sql.from('docente').
field('DISTINCT docente.ano_censo', 'years');
next();
}, query, response('years'));
teacherApp.get('/adm_dependency_detailed', (req, res, next) => {
req.sql.from('dependencia_adm')
.field('id', 'id')
......
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