Autocomplete : start fetching users. Still need to adjust UI and manage selection.

This commit is contained in:
Benoit Marty
2019-04-08 16:18:36 +02:00
parent aec7b73345
commit 6d3028c2d7
18 changed files with 376 additions and 9 deletions

View File

@ -26,6 +26,10 @@ class RxRoom(private val room: Room) {
return room.roomSummary.asObservable()
}
fun liveRoomMemberIds(): Observable<List<String>> {
return room.getRoomMemberIdsLive().asObservable()
}
}
fun Room.rx(): RxRoom {