mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-20 02:05:21 -04:00
Added 404 and 403 status on routes
This commit is contained in:
parent
5467e6da8d
commit
f5010af4f1
3 changed files with 14 additions and 2 deletions
8
app.js
8
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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue