From 1aee39c1ad286984501ac4b47da2b72d60b58a6f Mon Sep 17 00:00:00 2001 From: Janis Date: Wed, 10 Jun 2026 11:19:21 +0200 Subject: [PATCH] feat(reflection): add GameWritebackEventDto to native reflection configuration --- .../de/nowchess/tournament/config/NativeReflectionConfig.scala | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/tournament/src/main/scala/de/nowchess/tournament/config/NativeReflectionConfig.scala b/modules/tournament/src/main/scala/de/nowchess/tournament/config/NativeReflectionConfig.scala index a77a32d..925c237 100644 --- a/modules/tournament/src/main/scala/de/nowchess/tournament/config/NativeReflectionConfig.scala +++ b/modules/tournament/src/main/scala/de/nowchess/tournament/config/NativeReflectionConfig.scala @@ -1,5 +1,6 @@ package de.nowchess.tournament.config +import de.nowchess.api.dto.GameWritebackEventDto import de.nowchess.tournament.client.{CoreCreateGameRequest, CoreGameResponse, CorePlayerInfo, CoreTimeControl} import de.nowchess.tournament.domain.{Tournament, TournamentPairing, TournamentParticipant} import de.nowchess.tournament.dto.* @@ -29,6 +30,7 @@ import io.quarkus.runtime.annotations.RegisterForReflection classOf[CoreTimeControl], classOf[CoreCreateGameRequest], classOf[CoreGameResponse], + classOf[GameWritebackEventDto], ), ) class NativeReflectionConfig