This commit is contained in:
Olivier PARPAILLON
2025-07-16 10:28:59 +02:00
15 changed files with 158 additions and 101 deletions

View File

@@ -67,7 +67,7 @@ public class ClientController {
}
// Modifier l'address d'un client
@PutMapping("/{id}")
@PutMapping("/address/{id}")
public ResponseEntity<Map<String, Object>> updateAddress(@PathVariable Long id, @RequestBody Adresse adresse) {
clientService.updateLocation(id, adresse);
Map<String, Object> response = new HashMap<>();