feat: external website result connector
Some checks failed
Deploy Production Server / if_merged (pull_request) Failing after 2m31s

This commit is contained in:
2025-12-29 21:03:05 +01:00
parent 145d5e7ca8
commit bf377c9c5e
10 changed files with 1440 additions and 153 deletions

View File

@@ -66,4 +66,13 @@ public class RegisterModel {
return membre.club;
return club;
}
public Categorie getCategorie2() {
Categorie tmp = this.categorie;
if (tmp == null)
tmp = membre.getCategorie();
if (tmp == null)
return null;
return Categorie.values()[Math.min(tmp.ordinal() + this.overCategory, Categorie.values().length - 1)];
}
}