From f5010af4f1c90ca518ba6983ba009c9c47743240 Mon Sep 17 00:00:00 2001 From: Wu Cheng-Han Date: Wed, 30 Dec 2015 00:33:36 -0500 Subject: Added 404 and 403 status on routes --- app.js | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'app.js') diff --git a/app.js b/app.js index 64b5b5f8..cf82f443 100644 --- a/app.js +++ b/app.js @@ -141,6 +141,14 @@ app.set('views', __dirname + '/public'); app.engine('html', ejs.renderFile); //get index app.get("/", response.showIndex); +//get 403 forbidden +app.get("/403", function(req, res) { + response.errorForbidden(res); +}); +//get 404 not found +app.get("/404", function(req, res) { + response.errorNotFound(res); +}); //get status app.get("/status", function (req, res, next) { realtime.getStatus(function (data) { -- cgit v1.2.3