Skip to content
Merged
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 @@ -66,6 +66,7 @@ public class BookmarkUseCaseImpl implements BookmarkUseCase {
private final FileUseCase fileUseCase;
private final NotificationDeleteService notificationDeleteService;
private final NotificationGetService notificationGetService;
private final NotificationUseCase notificationUseCase;

private final FileMapper fileMapper;

Expand Down Expand Up @@ -150,6 +151,9 @@ public void save(Long userId, BookmarkSaveRequest request) {
if (request.file() != null) {
fileUseCase.saveFile(user, bookmark, request.file());
}
if (request.notification() != null) {
notificationUseCase.saveNotification(user, bookmark, request.notification());
}
}

@Transactional
Expand Down