Customer Detail Page and Enhance dynamic breadcrumbs
This commit is contained in:
@@ -53,7 +53,7 @@ public class CustomerController extends AbstractController {
|
||||
}
|
||||
|
||||
@GetMapping("/{id}")
|
||||
public ResponseEntity<Customer> loadById(@PathVariable UUID id) {
|
||||
public ResponseEntity<Customer> loadById(@PathVariable("id") UUID id) {
|
||||
return ResponseEntity.ok(loadCustomerQuery.loadById(id));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user