Created
December 3, 2021 05:00
-
-
Save hieptl/dffb316dae614d2118f04ef8c3d32cb6 to your computer and use it in GitHub Desktop.
join.js - client - join the 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 joinCometChatGroup = async ({ guid }) => { | |
| var password = ""; | |
| var groupType = cometChat.GROUP_TYPE.PUBLIC; | |
| await cometChat.joinGroup(guid, groupType, password); | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment