add internal route to retire

This commit is contained in:
girish@cloudron.io
2016-01-25 20:21:04 -08:00
parent 33bc1cf7d9
commit 072962bbc3
2 changed files with 15 additions and 1 deletions
+1
View File
@@ -227,6 +227,7 @@ function initializeInternalExpressSync() {
// internal routes
router.post('/api/v1/backup', routes.internal.backup);
router.post('/api/v1/update', routes.internal.update);
router.post('/api/v1/retire', routes.internal.retire);
return httpServer;
}