It would be nice to have the ability to filter users using getChannelMembers method. This will be useful for implementing suggestions of mentioning users into a chat.
1 Like
Welcome to ChatKitty Community @ipakhomov !
I can add this functionality in the next SDK release.
Hey @ipakhomov !
You can now filter channel members using the SDK.
Reactions
Adds support for message reactions. React to a message using the kitty.reactToMessage(...) method:
await kitty.reactToMessage({ message, emoji: ' ' });
To find the full list of emoji names supported by ChatKitty check out Emoji cheat sheet for GitHub, Basecamp, Slack & more
To receive updates when chat participants react to a message. Register a onMessageReaction chat session listener :
const result = kitty.startChatSession({
channel: channel,
onMessageReaction: (mes…
1 Like
Thank you so much! Works as expected!
1 Like