Merge branch 'develop' into feature/fga/space_manage_rooms
This commit is contained in:
commit
bb082191e4
495 changed files with 5979 additions and 3199 deletions
|
|
@ -26,4 +26,5 @@ data class CreateRoomParameters(
|
|||
val joinRuleOverride: JoinRule? = null,
|
||||
val historyVisibilityOverride: RoomHistoryVisibility? = null,
|
||||
val roomAliasName: Optional<String> = Optional.empty(),
|
||||
val isSpace: Boolean = false,
|
||||
)
|
||||
|
|
|
|||
|
|
@ -15,6 +15,10 @@ interface SpaceService {
|
|||
val spaceRoomsFlow: SharedFlow<List<SpaceRoom>>
|
||||
suspend fun joinedSpaces(): Result<List<SpaceRoom>>
|
||||
|
||||
suspend fun joinedParents(spaceId: RoomId): Result<List<SpaceRoom>>
|
||||
|
||||
suspend fun getSpaceRoom(spaceId: RoomId): SpaceRoom?
|
||||
|
||||
fun spaceRoomList(id: RoomId): SpaceRoomList
|
||||
|
||||
fun getLeaveSpaceHandle(spaceId: RoomId): LeaveSpaceHandle
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue