Skip to content

Instantly share code, notes, and snippets.

@hieptl
Created December 3, 2021 04:58
Show Gist options
  • Select an option

  • Save hieptl/f7f995ca46ec206a84b1ae79a455dd26 to your computer and use it in GitHub Desktop.

Select an option

Save hieptl/f7f995ca46ec206a84b1ae79a455dd26 to your computer and use it in GitHub Desktop.
create.js - client - create cometchat group - Zoom Clone
const createCometChatGroup = async ({ uid, name }) => {
const groupType = cometChat.GROUP_TYPE.PUBLIC;
const password = "";
const group = new cometChat.Group(uid, name, groupType, password);
await cometChat.createGroup(group);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment