feat: BAC-27 Implemented endpoint which returns information about the current state

This commit is contained in:
2025-12-07 19:12:28 +01:00
parent 1914aa67cd
commit 078667fc3f
2 changed files with 8 additions and 6 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)