-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MM-343] Updated meeting flow for new users. (#344)
* [MM-257] Updated meeting flow for new users. - User will get a post to select the default meeting ID when they try to start a meeting for the first time. * [MM-269] Added logic to automaticallly open the meeting * Added EOF * [MM-269] Review fixes * {MM-269] Review fix * [MM-289] Fix lint errors * [MM-343] Update successfull connection post and fix flaky test --------- Co-authored-by: ayusht2810 <ayush.thakur@brightscout.com>
- Loading branch information
1 parent
755ac01
commit 3206b7c
Showing
4 changed files
with
85 additions
and
31 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
export function handleMeetingStarted(msg: {data: {meeting_url: string}}) { | ||
window.open(msg.data.meeting_url); | ||
} |