diff --git a/services/arbiter-3.0/src/index.js b/services/arbiter-3.0/src/index.js index 2c4e4c1..95a9790 100644 --- a/services/arbiter-3.0/src/index.js +++ b/services/arbiter-3.0/src/index.js @@ -64,6 +64,9 @@ app.get('/health', (req, res) => { }); }); +// Root redirect to admin +app.get('/', (req, res) => res.redirect('/admin')); + // CSRF Protection (session-based) const csrfProtection = csrf({ cookie: false });