cleanup status route

this is now purely a healthcheck route and nothing else

at some point, we will server render password reset and setup account views
This commit is contained in:
Girish Ramakrishnan
2023-08-10 22:15:45 +05:30
parent 1cdd528b45
commit 955a43723f
7 changed files with 26 additions and 13 deletions

View File

@@ -105,8 +105,9 @@ async function initializeExpressSync() {
router.post('/api/v1/auth/password_reset_request', json, routes.auth.passwordResetRequest);
router.post('/api/v1/auth/password_reset', json, routes.auth.passwordReset);
router.post('/api/v1/auth/setup_account', json, routes.auth.setupAccount);
router.post('/api/v1/auth/branding', routes.auth.getBranding); // temp route until we server side render password_reset and setup_account
// config route (for dashboard). can return some private configuration unlike status
// config route for dashboard that any auth user (not just admin) can access
router.get ('/api/v1/config', token, authorizeUser, routes.cloudron.getConfig);
router.get ('/api/v1/platform_status', token, authorizeUser, routes.cloudron.getPlatformStatus);