Merge develop into feature/fga/some_room_related_fixes

This commit is contained in:
ganfra 2023-04-24 18:13:12 +02:00
commit 1d690fdd00
32 changed files with 594 additions and 88 deletions

View file

@ -69,6 +69,10 @@ interface MatrixRoom : Closeable {
suspend fun redactEvent(eventId: EventId, reason: String? = null): Result<Unit>
suspend fun leave(): Result<Unit>
suspend fun acceptInvitation(): Result<Unit>
suspend fun rejectInvitation(): Result<Unit>
}
fun MatrixRoom.getMemberFlow(userId: UserId): Flow<RoomMember?> {