feat: Implement friendly match management with socket integration and UI updates
All checks were successful
Deploy tt-tagebuch / deploy (push) Successful in 48s

This commit is contained in:
Torsten Schulz (local)
2026-05-18 10:02:31 +02:00
parent f9ab3d9932
commit 197f06989f
5 changed files with 473 additions and 18 deletions

View File

@@ -34,6 +34,11 @@ class SocketService(private val socketUrl: String) {
val data = args[0] as JSONObject
_events.tryEmit("diary:note:added" to data)
}
socket?.on("schedule:match:updated") { args ->
val data = args[0] as JSONObject
_events.tryEmit("schedule:match:updated" to data)
}
// Add more events as needed