Show unseen message count in room list

This commit is contained in:
Joscha 2022-08-08 23:14:58 +02:00
parent e00ce4ebba
commit 888870b779
5 changed files with 92 additions and 18 deletions

View file

@ -139,6 +139,10 @@ impl MsgStore<LogMsg> for Logger {
None
}
async fn unseen_msgs_count(&self) -> usize {
0
}
async fn set_seen(&self, _id: &usize, _seen: bool) {}
async fn set_older_seen(&self, _id: &usize, _seen: bool) {}