feat: implement table assignment and distribution for tournament matches
All checks were successful
Deploy tt-tagebuch / deploy (push) Successful in 44s

This commit is contained in:
Torsten Schulz (local)
2026-05-17 23:55:39 +02:00
parent 6c7ae6860b
commit 697e67d46e
16 changed files with 426 additions and 22 deletions

View File

@@ -156,6 +156,12 @@ class TournamentsApi(
}
}
suspend fun distributeTables(body: TournamentClubTournamentBody) {
client.http.post("/api/tournament/matches/distribute") {
setBody(body)
}
}
suspend fun getGroups(clubId: Int, tournamentId: Int): JsonElement {
return client.http.get("/api/tournament/groups") {
parameter("clubId", clubId)