Implement online registration (Nennung) workflow: add API integration, ViewModel logic, UI updates, backend endpoint, and roadmap adjustments.

This commit is contained in:
2026-04-14 19:41:32 +02:00
parent a6fcb81594
commit 26ac3007b9
6 changed files with 223 additions and 13 deletions
@@ -26,4 +26,9 @@ class NennungController(
) {
nennungRepository.updateStatus(Uuid.parse(id), newStatus)
}
@PostMapping
fun createNennung(@RequestBody nennung: NennungEntity) {
nennungRepository.save(nennung)
}
}