Implemented functional method to add a new system to a new through web app
This commit is contained in:
@@ -12,7 +12,10 @@ router.get('/:nodeId', nodesController.getNodeInfo);
|
||||
// Update an existing node
|
||||
router.put('/:nodeId', nodesController.updateExistingNode);
|
||||
|
||||
// Update an existing node's system
|
||||
// Add a system to an existing node
|
||||
router.post('/:nodeId/systems', nodesController.addNodeSystem);
|
||||
|
||||
// Update a system on an existing node
|
||||
router.put('/:nodeId/systems', nodesController.updateNodeSystem);
|
||||
|
||||
// TODO Need to authenticate this request
|
||||
|
||||
Reference in New Issue
Block a user