Skip to content

Commit

Permalink
fix/remove '/' before history/view
Browse files Browse the repository at this point in the history
  • Loading branch information
han16935 committed Aug 27, 2024
1 parent 9a6a6a5 commit 987192a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ public String getHistory(@Positive(message = "잘못된 값입니다!") @PathVar
Model model){
HistoryInfo history = historyService.getHistory(new HistoryInfoRequest(id));
model.addAttribute("history", history);
return "/history/view";
return "history/view";
}
}

0 comments on commit 987192a

Please sign in to comment.