dev add context for notifcations
Test Workflow / test (push) Has been cancelled

This commit is contained in:
2026-05-13 14:15:54 +07:00
parent cda829829c
commit a6e73be032
2 changed files with 2 additions and 0 deletions
@@ -15,4 +15,5 @@ public class NotificationDto {
private NotificationType type;
private NotificationStatus status;
private LocalDateTime createdAt;
private String context;
}
@@ -159,6 +159,7 @@ public class NotificationHandler implements RequestHandler {
.type(notification.getNotificationType())
.status(notification.getStatus())
.createdAt(notification.getCreatedAt())
.context(notification.getContext())
.build();
}
}