Open calvh opened 3 years ago
Frontend needs work, backend function needs review
Backend function (deleted)
```` @socketio.on("cancel queue") def handle_cancel_queue(data): sid = request.sid try: queue.remove(sid) emit("cancel queue") except ValueError: emit("user notification", "Not in queue") ````
Frontend needs work, backend function needs review
Backend function (deleted)