This commit is contained in:
@@ -15,4 +15,5 @@ public class NotificationDto {
|
|||||||
private NotificationType type;
|
private NotificationType type;
|
||||||
private NotificationStatus status;
|
private NotificationStatus status;
|
||||||
private LocalDateTime createdAt;
|
private LocalDateTime createdAt;
|
||||||
|
private String context;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -159,6 +159,7 @@ public class NotificationHandler implements RequestHandler {
|
|||||||
.type(notification.getNotificationType())
|
.type(notification.getNotificationType())
|
||||||
.status(notification.getStatus())
|
.status(notification.getStatus())
|
||||||
.createdAt(notification.getCreatedAt())
|
.createdAt(notification.getCreatedAt())
|
||||||
|
.context(notification.getContext())
|
||||||
.build();
|
.build();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user