Test admin register request notification handling

This commit is contained in:
Tim
2025-08-06 13:12:14 +08:00
parent 3167aad6d8
commit beb1bf70bf
3 changed files with 93 additions and 0 deletions

View File

@@ -19,5 +19,7 @@ public interface NotificationRepository extends JpaRepository<Notification, Long
void deleteByTypeAndFromUser(NotificationType type, User fromUser);
List<Notification> findByTypeAndFromUser(NotificationType type, User fromUser);
void deleteByTypeAndFromUserAndPost(NotificationType type, User fromUser, Post post);
}