fix: change status code of routes not implemented to 501

This commit is contained in:
zyachel 2022-05-23 18:10:41 +05:30
parent e8a51f6224
commit 04fa753623
2 changed files with 3 additions and 3 deletions

View file

@ -37,9 +37,9 @@ export const topic = catchAsyncErrors(async (req, res, next) => {
});
export const unimplemented = (req, res, next) => {
res.status(503).render('error', {
res.status(501).render('error', {
title: 'Not yet implemented',
statusCode: 503,
statusCode: 501,
message: "This route isn't yet implemented. Check back sometime later!",
});
};