You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in the backend/routes/match.js
modify the routes and add functionality
// Add a player to the queue
router.post("/join-queue", joinQueue);
// Remove a player from the queue
router.post("/leave-queue", leaveQueue);
// make all possible match in queue
router.get("/make-match", makeMatch);
// find match by id
router.post("/get-match", getMatch);
The text was updated successfully, but these errors were encountered:
in the backend/routes/match.js
modify the routes and add functionality
The text was updated successfully, but these errors were encountered: