diff --git a/api.js b/api.js index f1e7fdd..98433ea 100644 --- a/api.js +++ b/api.js @@ -72,7 +72,7 @@ function adminCheck(req, res, next) { // --- Root --- app.get('/', (req, res) => { - res.json({ status: 'ok' }); + res.json({ status: 'healthy' }); }); // --- /auth ---