Additional changes for #37

- Updating side bar
- Updating nav bar
- Adding node details page
- Adding controller page
- Updating routes
This commit is contained in:
Logan Cusano
2023-07-15 23:30:41 -04:00
committed by logan
parent 02854fb783
commit c5f7cc1da6
10 changed files with 376 additions and 163 deletions

View File

@@ -28,8 +28,7 @@ router.get('/nodeInfo', nodesController.getNodeInfo);
// Client checkin with the server to update information
router.post('/nodeCheckIn', nodesController.nodeCheckIn);
// TODO Need to authenticate this request
// Request a particular client to join a particular channel listening to a particular preset
router.post('/joinServer', nodesController.requestNodeJoinServer);
// Request a node to check in with the server
router.get('/:nodeId', nodesController.requestNodeCheckIn);
module.exports = router;