Merge branch 'develop' into feature/fga/pinned_message_banner_logic
This commit is contained in:
commit
583625e4d4
6 changed files with 48 additions and 14 deletions
|
|
@ -32,7 +32,14 @@ sealed interface OtherState {
|
|||
data object RoomHistoryVisibility : OtherState
|
||||
data object RoomJoinRules : OtherState
|
||||
data class RoomName(val name: String?) : OtherState
|
||||
data object RoomPinnedEvents : OtherState
|
||||
data class RoomPinnedEvents(val change: Change) : OtherState {
|
||||
enum class Change {
|
||||
ADDED,
|
||||
REMOVED,
|
||||
CHANGED
|
||||
}
|
||||
}
|
||||
|
||||
data class RoomUserPowerLevels(val users: Map<String, Long>) : OtherState
|
||||
data object RoomServerAcl : OtherState
|
||||
data class RoomThirdPartyInvite(val displayName: String?) : OtherState
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue