Cannot update a volume (otherwise, we have to re-configure apps)

This commit is contained in:
Girish Ramakrishnan
2020-10-28 16:51:33 -07:00
parent 96999e399d
commit 6157364e20
3 changed files with 2 additions and 42 deletions

View File

@@ -304,7 +304,6 @@ function initializeExpressSync() {
router.get ('/api/v1/volumes', token, authorizeAdmin, routes.volumes.list);
router.get ('/api/v1/volumes/:id', token, authorizeAdmin, routes.volumes.load, routes.volumes.get);
router.del ('/api/v1/volumes/:id', token, authorizeAdmin, routes.volumes.load, routes.volumes.del);
router.put ('/api/v1/volumes/:id', json, token, authorizeAdmin, routes.volumes.load, routes.volumes.update);
// addon routes
router.get ('/api/v1/services', token, authorizeAdmin, routes.services.getAll);