feat: separate backend base URL configurations for release and debug builds
All checks were successful
Deploy tt-tagebuch / deploy (push) Successful in 46s

This commit is contained in:
Torsten Schulz (local)
2026-05-17 22:46:07 +02:00
parent f8f1c797e7
commit 6c7ae6860b
20 changed files with 777 additions and 285 deletions

View File

@@ -64,7 +64,13 @@ class TournamentsApi(
}
suspend fun getTournament(clubId: Int, tournamentId: Int): InternalTournamentDetailDto {
return client.http.get("/api/tournament/$clubId/$tournamentId").body()
val result: InternalTournamentDetailDto = client.http.get("/api/tournament/$clubId/$tournamentId").body()
try {
println("[TournamentsApi] getTournament -> numberOfTables: ${'$'}{result.numberOfTables}")
} catch (t: Throwable) {
// ignore on platforms where println may not be available
}
return result
}
suspend fun getInternalTournamentStats(