mirror of
https://github.com/zyachel/quetre.git
synced 2025-04-05 22:17:39 +03:00
fix: change status code of routes not implemented to 501
This commit is contained in:
parent
e8a51f6224
commit
04fa753623
2 changed files with 3 additions and 3 deletions
|
@ -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!",
|
||||
});
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue