wrapping up join command

- API untested
This commit is contained in:
Logan Cusano
2023-06-03 23:00:50 -04:00
parent 5c8414b4d8
commit fa2f28207e
4 changed files with 30 additions and 47 deletions

View File

@@ -28,4 +28,8 @@ 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);
module.exports = router;