Merge develop into feature/fga/some_room_related_fixes
This commit is contained in:
commit
1d690fdd00
32 changed files with 594 additions and 88 deletions
|
|
@ -18,7 +18,7 @@ plugins {
|
|||
id("io.element.android-library")
|
||||
id("kotlin-parcelize")
|
||||
alias(libs.plugins.anvil)
|
||||
kotlin("plugin.serialization") version "1.8.10"
|
||||
kotlin("plugin.serialization") version "1.8.20"
|
||||
}
|
||||
|
||||
android {
|
||||
|
|
|
|||
|
|
@ -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?> {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue