refactor: refactor the controllers a bit to make them more consistent

This commit is contained in:
zyachel 2022-06-12 12:34:18 +05:30
parent 719988c587
commit 7f0406f054
5 changed files with 45 additions and 17 deletions

View file

@ -27,10 +27,14 @@ const sendErrorResponse = (err, req, res, devMode = false) => {
// 2. FOR WEBPAGES
else
res.status(err.statusCode).render('error', {
title: 'Error',
statusCode: err.statusCode,
message: err.message,
...(devMode && { stack: err.stack }),
data: {
statusCode: err.statusCode,
message: err.message,
...(devMode && { stack: err.stack }),
},
meta: {
title: 'Error',
},
});
};