From f442c85cb674a193a1e9566db9b632ba197eabb2 Mon Sep 17 00:00:00 2001 From: Julien Martin Date: Mon, 13 Apr 2026 16:08:20 +0200 Subject: [PATCH] fix(auth): persister places_available depuis places_disponibles (inscription AM) Made-with: Cursor --- backend/src/routes/auth/auth.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/routes/auth/auth.service.ts b/backend/src/routes/auth/auth.service.ts index 55a7b94..86d11c9 100644 --- a/backend/src/routes/auth/auth.service.ts +++ b/backend/src/routes/auth/auth.service.ts @@ -514,7 +514,7 @@ export class AuthService { approval_number: dto.numero_agrement, nir: nirNormalized, max_children: dto.capacite_accueil, - places_available: dto.capacite_accueil, + places_available: dto.places_disponibles, biography: dto.biographie, residence_city: dto.ville ?? undefined, agreement_date: dto.date_agrement ? new Date(dto.date_agrement) : undefined,