feat: add podium PDF
All checks were successful
Deploy Production Server / if_merged (pull_request) Successful in 7m28s

This commit is contained in:
2026-02-19 15:55:46 +01:00
parent ed5d73c25f
commit 2f390b03e2
10 changed files with 238 additions and 5 deletions

View File

@@ -54,6 +54,9 @@ public class CompetitionWS {
@Inject
RState rState;
@Inject
RPDF rpdf;
@Inject
SecurityCtx securityCtx;
@@ -99,6 +102,7 @@ public class CompetitionWS {
getWSReceiverMethods(RCard.class, rCard);
getWSReceiverMethods(RTeam.class, rTeam);
getWSReceiverMethods(RState.class, rState);
getWSReceiverMethods(RPDF.class, rpdf);
executor = notifyExecutor;
}