We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7e0aed commit a302707Copy full SHA for a302707
api/index.js
@@ -18,7 +18,7 @@ app.get('/', (req, res) => {
18
res.redirect(config.APP_URL);
19
return;
20
}
21
- res.sendStatus(200);
+ res.status(200).send({ status: 'OK' });
22
});
23
24
app.get('/info', async (req, res) => {
0 commit comments