Changeset 023f79c
- Timestamp:
- 02/05/23 21:05:49 (21 months ago)
- Branches:
- main
- Children:
- 988f3fa
- Parents:
- 55c0119
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Prototype Application/Paw5/src/main/java/finki/paw5/web/controllers/PostController.java
r55c0119 r023f79c 22 22 23 23 @PostMapping 24 public String submit 25 26 27 28 29 30 24 public String submit(@RequestParam String name, 25 @RequestParam Gender gender, 26 @RequestParam AgeGroup ageGroup, 27 @RequestParam Size size, 28 @RequestParam Species species, 29 @RequestParam String breed, 30 @RequestParam String urlimage) { 31 31 32 32 this.postService.submit(name, gender, ageGroup, size, species, breed, urlimage); 33 33 34 34 return null; 35 35 } 36 36 }
Note:
See TracChangeset
for help on using the changeset viewer.