Skip to content
Snippets Groups Projects
Commit 83f8b266 authored by Diego Giovane Pasqualin's avatar Diego Giovane Pasqualin
Browse files

Fix scpmc telecenters "web service"

parent 528a9657
No related branches found
No related tags found
No related merge requests found
......@@ -9,10 +9,11 @@ exports.list = function(req, res) {
var queries_dir = __dirname + "/../queries/"
var params = [];
for (var i in req.params) {
params.push(req.params[i])
}
var params = [
req.params.state || null,
req.params.city_id || null,
req.params.telecenter_id || null
];
var query_file = queries_dir + 'get_telecenter_info.sql';
req.db.queryFromFile(query_file, params, function(result) {
......
......@@ -20,7 +20,7 @@ db.config(config.db_config);
app.all('/api/points', db.connect, points.list);
app.all('/api/points/count', db.connect, points.count);
app.all('/api/telecenters/:region?/:state?/:city_id?/:telecenter_id?', db.connect, telecenters.list);
app.all('/api/telecenters/:state?/:city_id?/:telecenter_id?', db.connect, telecenters.list);
app.get('/api/:project/:type', db.connect, charts.get_data);
app.get('/api/:project/:type/:region', db.connect, charts.get_data);
......
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