refactor: nettoyer terminologie entité→organisation et corriger mapping TONTINE

- ADMIN_ENTITE→ADMIN_ORGANISATION dans Javadoc et README
- OrganisationModuleService: retirer TONTINE de MUTUELLE (BCEAO-réglementé, incompatible)
- Ajouter TONTINE aux ASSOCIATION et CLUB_SERVICE (pratique courante Afrique de l'Ouest)
- V18 migration: aligner modules_requis avec le code Java
This commit is contained in:
dahoud
2026-04-17 19:19:48 +00:00
parent 194a1e7017
commit 4b2b326afe
4 changed files with 11 additions and 12 deletions

View File

@@ -519,13 +519,13 @@ lionsctl pipeline \
### Authentification
- **Méthode** : OIDC/JWT via Keycloak
- **Rôles** : SUPER_ADMIN, ADMIN_ENTITE, MEMBRE_ACTIF, MEMBRE
- **Rôles** : SUPER_ADMIN, ADMIN_ORGANISATION, MEMBRE_ACTIF, MEMBRE
- **Token** : Bearer token dans header `Authorization`
### Endpoints protégés
```java
@RolesAllowed({"SUPER_ADMIN", "ADMIN_ENTITE"})
@RolesAllowed({"SUPER_ADMIN", "ADMIN_ORGANISATION"})
@POST
@Path("/budgets")
public Response createBudget(BudgetRequest request) {