Skip to content

Commit

Permalink
fix: 닉네임 오류 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
HyungJu committed May 15, 2024
1 parent 7008c06 commit c2aeaf6
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -111,19 +111,19 @@ class VacgomSignupService(

notificationService.sendNotification(
memberId,
"${member.nickname}님을 위한 백신이 ${recommendedDiseases.size}개 있어요!",
"${member.nickname?.nickname}님을 위한 백신이 ${recommendedDiseases.size}개 있어요!",
"vaccine",
)

notificationService.sendNotification(
memberId,
"${member.nickname}님의 접종 인증서가 ${inoculations.size}개 발급됐어요",
"${member.nickname?.nickname}님의 접종 인증서가 ${inoculations.size}개 발급됐어요",
"vaccine",
)

notificationService.sendNotification(
memberId,
"${member.nickname}님! 백곰 가입을 환영해요 :)",
"${member.nickname?.nickname}님! 백곰 가입을 환영해요 :)",
"success",
)
return AuthResponse(true, memberResponse, tokenResponse)
Expand Down

0 comments on commit c2aeaf6

Please sign in to comment.