Add microservices for masterdata, events, and ZNS import; configure API gateway routes; implement real Turnier and Verein repository integrations; and update infrastructure, frontend, and documentation.

This commit is contained in:
2026-04-12 16:20:50 +02:00
parent b07d5d7386
commit eb06c85013
11 changed files with 451 additions and 31 deletions
@@ -21,9 +21,14 @@ object ApiRoutes {
}
object Masterdata {
const val REITER = "/api/masterdata/reiter"
const val PFERDE = "/api/masterdata/horse"
const val FUNKTIONAERE = "/api/masterdata/funktionaer"
const val VEREINE = "/api/masterdata/verein"
const val ROOT = "/api/v1/masterdata"
const val REITER = "$ROOT/reiter"
const val PFERDE = "$ROOT/horse"
const val FUNKTIONAERE = "$ROOT/funktionaer"
const val VEREINE = "$ROOT/verein"
}
object Events {
const val ROOT = "/api/v1/events"
}
}