Added 404 and 403 status on routes

This commit is contained in:
Wu Cheng-Han 2015-12-30 00:33:36 -05:00
parent 5467e6da8d
commit f5010af4f1
3 changed files with 14 additions and 2 deletions

8
app.js
View file

@ -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) {