From 9d81660e24ff829ccb42ad9789f6b02c20948731 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Soner=20U=C5=9Fakl=C4=B1?= Date: Fri, 16 Oct 2020 20:21:52 -0400 Subject: [PATCH] Revert "Revert "fix: appropriate 404 handling for write API calls"" This reverts commit 135c2d6c7d47e325898aa852e1dbf4061dfdf84b. --- src/routes/write/index.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/routes/write/index.js b/src/routes/write/index.js index c4d864f08e..dcb5995bf1 100644 --- a/src/routes/write/index.js +++ b/src/routes/write/index.js @@ -55,4 +55,9 @@ Write.reload = async (params) => { }); winston.info(`[api] Adding ${pluginRouter.stack.length} route(s) to \`api/v3/plugins\``); router.use('/api/v3/plugins', pluginRouter); + + // 404 handling + router.use('/api/v3', (req, res) => { + helpers.formatApiResponse(404, res); + }); };