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

Add route /school/years

parent da3a70bb
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 #
......@@ -25,6 +25,12 @@ schoolApp.get('/year_range', (req, res, next) => {
next();
}, query, response('range'));
schoolApp.get('/years', (req, res, next) => {
req.sql.from('escola').
field('DISTINCT escola.ano_censo', 'years');
next();
}, query, response('years'));
schoolApp.get('/location', (req, res, next) => {
req.result = [
{id: 1, name: 'Urbana'},
......
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