From 6d414eda6e2084cbf1507ca378f59d632d10b417 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jo=C3=A3o=20Victor=20Tozatti=20Risso?= <jvtr12@c3sl.ufpr.br>
Date: Mon, 11 Jul 2016 10:26:39 -0300
Subject: [PATCH] Add query for all regions in the API
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Signed-off-by: João Victor Tozatti Risso <jvtr12@c3sl.ufpr.br>
---
 libs/routes/api.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libs/routes/api.js b/libs/routes/api.js
index 3d72a1eb..4440b991 100644
--- a/libs/routes/api.js
+++ b/libs/routes/api.js
@@ -103,9 +103,9 @@ router.get('/enrollments.:format?', function(req, res) {
         break;
     */
     case "region":
-        if (!id) { // FIXME: parametrized query for all regions is not yet available
+        if (!id) {
             enrollmentSql = "SELECT nome AS name, total, ano_inicio AS start_year, ano_fim AS end_year \
-                FROM matRegiao(1," + start_year + "," + end_year + "," + adm_dependency_id + "," + location_id + ")";
+                FROM matRegioes(" + start_year + "," + end_year + "," + adm_dependency_id + "," + location_id + ")";
         } else {
             enrollmentSql = "SELECT nome AS name, total, ano_inicio AS start_year, ano_fim AS end_year \
                 FROM matRegiao(" + id + "," + start_year + "," + end_year + "," + adm_dependency_id + "," + location_id + ")";
-- 
GitLab