Documentation added for new parameter excludedUserIds.

This commit is contained in:
onurays 2020-04-30 15:40:54 +03:00
parent 0aeb327062
commit cf5d89ea9b

View File

@ -61,6 +61,7 @@ interface UserService {
/**
* Observe a live [PagedList] of users sorted alphabetically. You can filter the users.
* @param filter the filter. It will look into userId and displayName.
* @param excludedUserIds userId list which will be excluded from the result list.
* @return a Livedata of users
*/
fun getPagedUsersLive(filter: String? = null, excludedUserIds: Set<String>? = null): LiveData<PagedList<User>>