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

Add route /classroom/years

parent 548a3d2a
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 #
......@@ -27,6 +27,12 @@ classroomApp.get('/year_range', (req, res, next) => {
next();
}, query, response('range'));
classroomApp.get('/years', (req, res, next) => {
req.sql.from('escola')
.field('DISTINCT escola.ano_censo', 'year');
next();
}, query, response('years'));
classroomApp.get('/adm_dependency', (req, res, next) => {
req.sql.from('dependencia_adm')
.field('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