(feat): Queue/Dequeue button and waiting for match text

This commit is contained in:
apetitco 2026-01-09 18:01:07 +01:00 committed by Maix0
parent 6bd3a01f5f
commit 272c6f319c
8 changed files with 154 additions and 20 deletions

View file

@ -7,7 +7,35 @@
"components": {
"schemas": {}
},
"paths": {},
"paths": {
"/api/chat/broadcast": {
"post": {
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object",
"required": [
"nextGame"
],
"properties": {
"nextGame": {
"type": "string"
}
}
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Default Response"
}
}
}
}
},
"servers": [
{
"url": "https://local.maix.me:8888",