ahmadnassri/mockbin

View on GitHub
lib/middleware/not-found-handler.js

Summary

Maintainability
A
0 mins
Test Coverage
module.exports = (req, res, next) => {
    res.view = 404;

    res.status(404).body = {
        error: {
            code: "404",
            message: "Not Found",
        },
    };

    next();
};