Created
December 3, 2021 04:58
-
-
Save hieptl/f7f995ca46ec206a84b1ae79a455dd26 to your computer and use it in GitHub Desktop.
create.js - client - create cometchat group - Zoom 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 ({ 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