Skip to content

Commit

Permalink
feat: 채팅 푸시 알림 기능 주석 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
1o18z committed Dec 1, 2023
1 parent c7bd6bf commit 0c55adb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public ChattingDto.Response chatting(String sessionId, Long roomId, String conte
ChattingRoom room = chattingRoomQuery.getChattingRoomById(roomId);
List<User> users = userQuery.getUsersByRoom(room);
User user = userQuery.getUserById(userId);
//sendChattingAlarm(user.getProfile().getNickname(), content, users);
sendChattingAlarm(user.getProfile().getNickname(), content, users);
ChattingMessage chattingMessage = chattingMessageCommand.createChattingMessage(content,
room, user);
return ChattingDto.Response.of(user, chattingMessage);
Expand Down

0 comments on commit 0c55adb

Please sign in to comment.