Skip to content

Commit

Permalink
Merge pull request EveryUniv#79 from gutanbug/dev_deploy
Browse files Browse the repository at this point in the history
fix: Thymeleaf 오류로 / 제거
  • Loading branch information
gutanbug authored Jan 24, 2024
2 parents f1280b5 + 52f7de4 commit 66ff52b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public String goChatRoom(Model model, AppAuthentication auth) {

log.info("SHOW ALL ChatList {}", chatService.findAllRoom());

return "/page/chatting/roomlist";
return "page/chatting/roomlist";
}

/**
Expand Down Expand Up @@ -83,7 +83,7 @@ public String roomDetail(Model model, String roomId, AppAuthentication auth){
model.addAttribute("user", userService.getUserInfoForChatting(auth.getUserId()));
model.addAttribute("room", chatService.findRoomById(roomId));

return "/page/chatting/chatroom";
return "page/chatting/chatroom";
}

/**
Expand Down

0 comments on commit 66ff52b

Please sign in to comment.