Merge branch 'master' of github.com:designcreateplay/NodeBB

This commit is contained in:
Julian Lam
2013-08-11 16:13:04 -04:00

View File

@@ -210,5 +210,9 @@ var user = require('./../user.js'),
app.get('/api/404', function(req, res) { app.get('/api/404', function(req, res) {
res.json({}); res.json({});
}); });
app.get('/api/403', function(req, res) {
res.json({});
});
} }
}(exports)); }(exports));