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:
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user