feat: BAC-27 Implemented endpoint which returns information about the current state (#103)

Reviewed-on: #103
Reviewed-by: lq64 <lq@blackhole.local>
Co-authored-by: Janis <janis.e.20@gmx.de>
Co-committed-by: Janis <janis.e.20@gmx.de>
This commit is contained in:
2025-12-10 11:37:35 +01:00
committed by lq64
parent bf6ffeadb0
commit dd5e8e65e5
4 changed files with 102 additions and 4 deletions

View File

@@ -27,4 +27,8 @@ GET /logout controllers.UserController.logout()
GET /game/:id controllers.IngameController.game(id: String)
# Websocket
GET /websocket controllers.WebsocketController.socket()
GET /websocket controllers.WebsocketController.socket()
# Status
GET /status controllers.StatusController.requestStatus()
GET /status/:gameId controllers.StatusController.game(gameId: String)