feat: add selection
All checks were successful
Deploy Production Server / if_merged (pull_request) Successful in 6m50s

This commit is contained in:
2026-01-05 17:56:37 +01:00
parent 0757ae7198
commit 13650b27c1
20 changed files with 507 additions and 41 deletions

View File

@@ -72,6 +72,10 @@ public class MembreModel implements LoggableModel, CombModel {
@Schema(description = "Les licences du membre. (optionnel)")
List<LicenceModel> licences;
@OneToMany(mappedBy = "membre", fetch = FetchType.LAZY, cascade = CascadeType.ALL)
@Schema(description = "Les séléctions du membre. (optionnel)")
List<SelectionModel> selections;
@Override
public String getObjectName() {
return fname + " " + lname;