Add a way to clear the cache for a specific room.

This commit is contained in:
Benoit Marty 2024-12-12 11:58:46 +01:00
parent 0d2efe5ffa
commit 4f1c745fc8
8 changed files with 45 additions and 1 deletions

View file

@ -569,6 +569,12 @@ class RustMatrixRoom(
}
}
override suspend fun clearEventCacheStorage(): Result<Unit> = withContext(roomDispatcher) {
runCatching {
innerRoom.clearEventCacheStorage()
}
}
override suspend fun kickUser(userId: UserId, reason: String?): Result<Unit> = withContext(roomDispatcher) {
runCatching {
innerRoom.kickUser(userId.value, reason)