Parcourir la source

Update README.md

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

+ 2
- 2
README.md Voir le fichier

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