Skip to content

Commit

Permalink
[rename] : NotificiationEvent 알림 대상자 필드명 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
dudxo committed Sep 13, 2024
1 parent f2c3203 commit cf4d581
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ public record NotificationEvent(
NotificationType type,
Long targetId,
Long triggerMemberId,
Member toMember
Member targetMember
) {
}
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public void saveNotificationFromTarget(NotificationEvent event) {
event.type(),
event.targetId(),
event.triggerMemberId(),
event.toMember()
event.targetMember()
);
notificationRepository.save(notification);
} catch (Exception e) {
Expand Down

0 comments on commit cf4d581

Please sign in to comment.