Integrate Nennungen and Masterdata features: expand ApiRoutes, add repositories and ViewModels for Nennungen and Masterdata. Update navigation and UI components to include Meisterschaften and Cups tabs.

This commit is contained in:
2026-04-11 21:58:46 +02:00
parent edfbbb805f
commit 15b3f17d1d
21 changed files with 806 additions and 84 deletions
@@ -17,5 +17,13 @@ object ApiRoutes {
object Bewerbe {
fun abteilungen(bewerbId: Long): String = "$API_PREFIX/bewerbe/$bewerbId/abteilungen"
fun nennungen(bewerbId: Long): String = "$API_PREFIX/bewerbe/$bewerbId/nennungen"
}
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"
}
}