Chat Android v4
Chat Android
Chat
Android
Version 4
Home
/
Chat
/
Android
/
User
You can create a query to retrieve a list of banned users in both open and group channels. Only users registered as channel operators may use the following code.
You can create a query to retrieve a list of banned users in both open and group channels. Only users registered as channel operators may use the following code.
// Retrieve banned users. val query = channel.createBannedUserListQuery() query.next { restrictedUsers, e -> if (e != null) { // Handle error. } // ... }