Parcourir la source

Update README.md

Git-Leon il y a 6 ans
Parent
révision
3d3107004d
Aucun compte lié à l'adresse email de l'auteur
1 fichiers modifiés avec 11 ajouts et 2 suppressions
  1. 11
    2
      README.md

+ 11
- 2
README.md Voir le fichier

328
 
328
 
329
 ```java
329
 ```java
330
 @RequestMapping(value="/polls/{pollId}/votes", method=RequestMethod.GET)
330
 @RequestMapping(value="/polls/{pollId}/votes", method=RequestMethod.GET)
331
-public Iterable<Vote> getAllVotes(@PathVariable Long pollId) {
332
-        return voteRepository. findByPoll(pollId);
331
+public Iterable<Vote> getAllVotes() {
332
+	return voteRepository.findAll();
333
+}
334
+```
335
+
336
+* Create a `getVote` method in the `VoteController`
337
+
338
+```java
339
+@RequestMapping(value="/polls/{pollId}/votes", method=RequestMethod.GET)
340
+public Iterable<Vote> getVote(@PathVariable Long pollId) {
341
+	return voteRepository.findById(pollId);
333
 }
342
 }
334
 ```
343
 ```
335
 
344