Skip to content

Commit

Permalink
fix:
Browse files Browse the repository at this point in the history
Thymeleaf 오류로 / 제거
  • Loading branch information
gutanbug committed Jan 24, 2024
1 parent a27f969 commit 52f7de4
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 52f7de4

Please sign in to comment.