Skip to content

Instantly share code, notes, and snippets.

@hieptl
Created November 14, 2021 05:59
Show Gist options
  • Save hieptl/62aa1744ab979f52d96bcd2b3b8cf554 to your computer and use it in GitHub Desktop.
Save hieptl/62aa1744ab979f52d96bcd2b3b8cf554 to your computer and use it in GitHub Desktop.
Create.js - Create Cometchat Group - Discord Clone
...
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