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
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user