Room deletion (fixes #43)

This commit is contained in:
dasha_uwu
2025-08-22 20:21:05 +05:00
parent 7a3496869b
commit d05d3f710f
15 changed files with 447 additions and 7 deletions

View File

@@ -145,6 +145,10 @@ impl Service {
.last_privateread_update(user_id, room_id)
.await
}
pub async fn delete_all_read_receipts(&self, room_id: &RoomId) -> Result {
self.db.delete_all_read_receipts(room_id).await
}
}
#[must_use]