Add suggestion of users when starting a Chat #2634
This commit is contained in:
parent
649204238c
commit
1c66254e74
16 changed files with 285 additions and 53 deletions
|
|
@ -201,6 +201,10 @@ class FakeMatrixRoom(
|
|||
return getRoomMemberResult
|
||||
}
|
||||
|
||||
override suspend fun getMembers(limit: Int): Result<List<RoomMember>> {
|
||||
return Result.success(emptyList())
|
||||
}
|
||||
|
||||
override suspend fun updateRoomNotificationSettings(): Result<Unit> = simulateLongTask {
|
||||
val notificationSettings = notificationSettingsService.getRoomNotificationSettings(roomId, isEncrypted, isOneToOne).getOrThrow()
|
||||
roomNotificationSettingsStateFlow.value = MatrixRoomNotificationSettingsState.Ready(notificationSettings)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue