Add repositories

This commit is contained in:
Dmitrii Cravcenco
2023-09-21 14:49:49 +03:00
parent 53ae0d502c
commit c0f3a7f7a7
5 changed files with 24 additions and 12 deletions

View File

@@ -18,7 +18,7 @@ public class MainController {
@GetMapping("/users/get/{id}")
public User getUser(@PathVariable int id) {
return new User(id, "Test", null, null, null, null, null, null);
return new User(id, "Test", null, null, null, null, null);
}
@PostMapping("/users/set/{id}/name")