Skip to content
This repository has been archived by the owner on Nov 27, 2024. It is now read-only.

Commit

Permalink
파라미터 이름 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
ori0o0p committed Feb 19, 2024
1 parent 71ef10f commit e0c4984
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ public Flux<RevisionHistory> getRevisionByDocument(@PathVariable String document
}

@GetMapping("/users")
public Flux<RevisionHistory> getRevisionByUser(@RequestParam String param, @RequestParam String lastRevision) {
return revisionService.getAllRevisionByUser(param, lastRevision);
public Flux<RevisionHistory> getRevisionByUser(@RequestParam String user, @RequestParam String lastRevision) {
return revisionService.getAllRevisionByUser(user, lastRevision);
}

}

0 comments on commit e0c4984

Please sign in to comment.