|
@@ -328,8 +328,17 @@ public interface VoteRepository extends CrudRepository<Vote, Long> {
|
328
|
328
|
|
329
|
329
|
```java
|
330
|
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
|
|