-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix parameter name in manageChannelMembers #318
Conversation
@@ -1886,7 +1886,7 @@ actual interface PubNub : StatusEmitter, EventEmitter { | |||
fun manageChannelMembers( | |||
channel: String, | |||
usersToSet: Collection<MemberInput>, | |||
usersToRemove: Collection<String>, | |||
usersIdsToRemove: Collection<String>, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
usersIdsToRemove: Collection<String>, | |
userIdsToRemove: Collection<String>, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch. I will change it.
@pubnub-release-bot release kotlin as v10.3.1 |
@pubnub-release-bot release kotlin as v10.3.0 |
🚀 Release successfully completed 🚀 |
feat: Added membershipType to Memberships and ChannelMembers APIs.
Added also a way to specify optional data being added to the response for Membership and ChannelMembers APIs.