From 9a50cde0d6c11f83e2eff5bd6e583cdce7495f23 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jo=C3=A3o=20Victor=20Tozatti=20Risso?= <jvtr12@c3sl.ufpr.br>
Date: Wed, 6 Jul 2016 09:39:11 -0300
Subject: [PATCH] Fix missing semicolon in api.js
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 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libs/routes/api.js b/libs/routes/api.js
index 3b93a32c..0bde814c 100644
--- a/libs/routes/api.js
+++ b/libs/routes/api.js
@@ -52,7 +52,7 @@ router.get('/matriculas', function(req, res) {
         res.json({
             result: result.data
         })
-    })
+    });
 })
 
 module.exports = router
-- 
GitLab