Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public void handlePostApprovalAlarmEvent(final PostApprovalNotificationEvent eve

private void saveNotification(final PostApprovalNotificationEvent event) {
notificationService.save(
event.authorId(), event.authorName(), event.postTitle(), event.memberName(), event.memberId(),
event.authorId(), event.authorName(), event.postTitle(), event.actorName(), event.actorId(),
event.targetType(), event.postId(), event.notificationActionType(), event.modifiedAt(), event.projectId(),
event.projectStepId());
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
import kr.mywork.domain.notification.model.NotificationActionType;
import kr.mywork.domain.notification.model.TargetType;

public record PostApprovalNotificationEvent(UUID authorId, String authorName, String postTitle, UUID memberId,
String memberName, TargetType targetType, UUID postId,
public record PostApprovalNotificationEvent(UUID authorId, String authorName, String postTitle, UUID actorId,
String actorName, TargetType targetType, UUID postId,
NotificationActionType notificationActionType, LocalDateTime modifiedAt,
UUID projectId, UUID projectStepId) {
}
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ private void saveNotification(final CheckListApprovalNotificationEvent event) {
event.authorId(),
event.authorName(),
event.checkListTitle(),
event.authorName(),
event.memberId(),
event.actorName(),
event.actorId(),
event.targetType(),
event.checkListId(),
event.notificationActionType(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import kr.mywork.domain.notification.model.TargetType;

public record CheckListApprovalNotificationEvent(UUID authorId, String authorName, String checkListTitle,
String memberName, UUID memberId, TargetType targetType,
String actorName, UUID actorId, TargetType targetType,
UUID checkListId, NotificationActionType notificationActionType,
LocalDateTime modifiedAt, UUID projectId, UUID projectStepId) {

Expand Down
Loading