fix: additional endpoint

This commit is contained in:
2022-09-15 14:08:38 +02:00
parent 9b74b86ffa
commit cf2966461f
+4
View File
@@ -493,4 +493,8 @@ router.get('/healthcheck', async function (req, res) {
}
});
router.get('/health', async function (req, res) {
res.json({status: "ok"});
}
module.exports = router;