Integrate series-service microservice with API gateway routing, implement Series domain and point aggregation logic, and update frontend with SeriesViewModel, SeriesScreen, and dynamic state handling.

This commit is contained in:
2026-04-12 16:58:22 +02:00
parent 4ad9b274e8
commit 6e99bc97fd
20 changed files with 711 additions and 25 deletions
@@ -36,4 +36,9 @@ object ApiRoutes {
const val ROOT = "/api/v1/results"
fun bewerb(bewerbId: String) = "$ROOT/bewerb/$bewerbId"
}
object Series {
const val ROOT = "/api/v1/series"
fun stand(serieId: String) = "$ROOT/$serieId/stand"
}
}