Skip to content

Commit

Permalink
[~] #64 ServiceReuslt 사용하도록 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
woody35545 committed Oct 22, 2023
1 parent ec65cf6 commit d94fa05
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public String answerView(Model model) {

@GetMapping("/replyers")
public String replyerView(Model model) {
List<Replyer> replyerList = replyerService.getAllReplyers();
List<Replyer> replyerList = (List<Replyer>)replyerService.getAllReplyers().getData();
model.addAttribute("replyerList", replyerList);
return "replyer_view";
}
Expand Down

0 comments on commit d94fa05

Please sign in to comment.