Changeset c37c953
- Timestamp:
- 02/13/23 13:49:11 (21 months ago)
- Branches:
- main
- Children:
- 04e4f54
- Parents:
- 325a55d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Prototype Application/Paw5/src/main/java/finki/paw5/web/controllers/PostController.java
r325a55d rc37c953 49 49 this.petService.save(pet); 50 50 51 Post post = new Post(LocalDate.now(), imageUrl, pet.getId(), null, 10); 51 Post post = new Post(LocalDate.now(), imageUrl, pet.getId(), null, 10);//TODO: employee id da se zeme preku session user getid 52 52 this.postService.save(post); 53 53 54 return null;54 return "redirect:/home"; 55 55 } 56 56 }
Note:
See TracChangeset
for help on using the changeset viewer.