feat: implement unread notification count and enhance user listing with pagination
Some checks failed
lint / lint (push) Has been cancelled
test / unit (push) Has been cancelled
test / integration (push) Has been cancelled
lint / lint (pull_request) Failing after 9m33s
test / unit (pull_request) Successful in 16m24s
test / integration (pull_request) Failing after 16m52s

This commit is contained in:
2026-05-15 12:04:00 +02:00
parent 5f61a71336
commit 6273635aeb
15 changed files with 253 additions and 154 deletions

View File

@@ -498,6 +498,15 @@ impl NotificationRepository for TestStore {
per_page: 20,
})
}
async fn count_unread(&self, uid: &UserId) -> Result<u64, DomainError> {
Ok(self
.notifications
.lock()
.unwrap()
.iter()
.filter(|n| &n.user_id == uid && !n.read)
.count() as u64)
}
async fn mark_read(&self, id: &NotificationId, _uid: &UserId) -> Result<(), DomainError> {
if let Some(n) = self
.notifications