feat: improve result page design

This commit is contained in:
2026-01-02 13:48:36 +01:00
parent 71a4d98434
commit 82231744af
4 changed files with 225 additions and 84 deletions

View File

@@ -37,7 +37,7 @@ public class ExternalResultEndpoints {
return Uni.createFrom().voidItem();
if (updateService.needUpdate(poule, rf)) {
return resultService.getCategoryPublic(id, poule);
return resultService.getCategory(id, poule);
} else {
return Uni.createFrom().voidItem();
}
@@ -67,7 +67,6 @@ public class ExternalResultEndpoints {
}
@GET
@Path("/club/list")
@Produces(MediaType.APPLICATION_JSON)
@@ -81,6 +80,6 @@ public class ExternalResultEndpoints {
public Uni<?> getClubArray(@QueryParam("club") long club) {
if (club == 0)
return Uni.createFrom().item("");
return resultService.getClubArrayPublic(id, club);
return resultService.getClubArray2(id, club, null);
}
}