1
0
Fork 0
This repository has been archived on 2024-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
Internet_Security/routes/error.js
2020-05-11 10:51:30 +02:00

6 lines
138 B
JavaScript

module.exports = (err, req, res, next) => {
console.error(err.stack);
res.status(500);
res.render("error", {session: req.session});
}