Remove now redundant developer login code

This commit is contained in:
Johannes Zellner
2020-02-06 15:47:44 +01:00
parent 7c5a258af3
commit b4e4b11ab3
4 changed files with 7 additions and 29 deletions

View File

@@ -113,7 +113,7 @@ function initializeExpressSync() {
router.post('/api/v1/cloudron/setup_account', routes.cloudron.setupAccount);
// developer routes
router.post('/api/v1/developer/login', password, routes.developer.login);
router.post('/api/v1/developer/login', password, routes.cloudron.login); // DEPRECATED we should use the regular /api/v1/cloudron/login
// cloudron routes
router.get ('/api/v1/cloudron/update', cloudronScope, routes.cloudron.getUpdateInfo);