getPagedUsersLive

abstract fun getPagedUsersLive(filter: String? = null, excludedUserIds: Set<String>? = null): LiveData<PagedList<User>>

Observe a live PagedList of users sorted alphabetically. You can filter the users.

Return

a Livedata of users

Parameters

filter

the filter. It will look into userId and displayName.

excludedUserIds

userId list which will be excluded from the result list.