Merge branch 'develop' into feature/fga/room_directory
This commit is contained in:
commit
37d645d153
126 changed files with 787 additions and 259 deletions
|
|
@ -55,6 +55,7 @@ interface MatrixRoom : Closeable {
|
|||
val topic: String?
|
||||
val avatarUrl: String?
|
||||
val isEncrypted: Boolean
|
||||
val isSpace: Boolean
|
||||
val isDirect: Boolean
|
||||
val isPublic: Boolean
|
||||
val activeMemberCount: Long
|
||||
|
|
|
|||
|
|
@ -66,7 +66,9 @@ enum class RoomMembershipState {
|
|||
INVITE,
|
||||
JOIN,
|
||||
KNOCK,
|
||||
LEAVE
|
||||
LEAVE;
|
||||
|
||||
fun isActive(): Boolean = this == JOIN || this == INVITE
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue