feat: add public screen

This commit is contained in:
2025-12-15 23:07:41 +01:00
parent 8e01fb46f8
commit 0ac92fcda3
12 changed files with 174 additions and 59 deletions

View File

@@ -22,7 +22,7 @@ public class RRegister {
@Inject
CompetitionRepository competitionRepository;
@WSReceiver(code = "getRegister", permission = PermLevel.ADMIN)
@WSReceiver(code = "getRegister", permission = PermLevel.TABLE)
public Uni<List<CombEntity>> getRegister(WebSocketConnection connection, Object o) {
return competitionRepository.find("uuid", connection.pathParam("uuid")).firstResult()
.call(cm -> Mutiny.fetch(cm.getInsc()))