Skip to content

Commit

Permalink
#266 refactor: 채팅방 입장 세스템 메시지에 멤버 닉네임 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
xhaktmchl committed Jan 2, 2023
1 parent d071d8d commit 1123de2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ public PartyChatRoomMemberRes joinPartyChatRoom(int memberId, String chatRoomId,
mqController.joinChatRoom(member.getId(), partyChatRoom.getId()); // rabbitmq 큐 생성 및 채팅방 exchange와 바인딩

// 입장 시스템 메시지 전송
this.createChat(memberId, chatRoomId, "입장하였습니다.", true, profileImgUrl, "publish", "none", false);
this.createChat(memberId, chatRoomId, member.getNickName()+"님이 입장하였습니다.", true, profileImgUrl, "publish", "none", false);

PartyChatRoomMemberRes res = PartyChatRoomMemberRes.toDto(partyChatRoomMember, partyChatRoom);
return res;
Expand Down

0 comments on commit 1123de2

Please sign in to comment.