Created
November 14, 2021 05:59
-
-
Save hieptl/62aa1744ab979f52d96bcd2b3b8cf554 to your computer and use it in GitHub Desktop.
Create.js - Create Cometchat Group - Discord Clone
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
... | |
const createCometChatGroup = async ({ guid, channelName }) => { | |
const group = new cometChat.Group(guid, channelName, 'public', ''); | |
await cometChat.createGroup(group); | |
}; | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment