Skip to content

Commit

Permalink
fix: 기존 채팅방 리다이렉트 경로로 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
gutanbug committed Jan 24, 2024
1 parent 89104f5 commit a27f969
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 a27f969

Please sign in to comment.