mirror of
https://github.com/spacedeck/spacedeck-open.git
synced 2025-12-15 17:37:30 +01:00
initial commit.
This commit is contained in:
19
middlewares/404.js
Normal file
19
middlewares/404.js
Normal file
@@ -0,0 +1,19 @@
|
||||
'use strict';
|
||||
|
||||
require('../models/schema');
|
||||
var config = require('config');
|
||||
|
||||
module.exports = (req, res, next) => {
|
||||
var err = new Error('Not Found');
|
||||
if (req.accepts('text/html')) {
|
||||
res.status(404).render('not_found', {
|
||||
title: 'Page Not Found.'
|
||||
});
|
||||
} else if (req.accepts('application/json')) {
|
||||
res.status(404).json({
|
||||
"error": "not_found"
|
||||
});
|
||||
} else {
|
||||
res.status(404).send("Not Found.");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user