Skip to content

Commit

Permalink
fix(MeetingsAdapter): change states for meeting
Browse files Browse the repository at this point in the history
  • Loading branch information
maloun96 authored and lalli-flores committed Apr 19, 2021
1 parent 4af8f3c commit eaf8092
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/MeetingsAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import WebexAdapter from './WebexAdapter';
* @property {MediaStream} remoteVideo The remote video stream
* @property {MediaStream} remoteAudio The remote audio stream
* @property {MediaStream} remoteShare The remote media share stream
* @property {MeetingState} state The status of the meeting
* @property {MeetingState} state The state of the meeting
*/

/**
Expand Down Expand Up @@ -79,15 +79,15 @@ export const MeetingControlState = {

/**
* Enum for meeting states.
* A falsy value for the state (missing/undefined/null) means that the meeting has not been created yet.
*
* @readonly
* @enum {string}
*/
export const MeetingState = {
ACTIVE: 'ACTIVE',
ENDED: 'ENDED',
JOINED: 'JOINED', // Inactive
NOT_STARTED: 'NOT_STARTED',
NOT_JOINED: 'NOT_JOINED', // the meeting has been created (has an id), but the user has not yet started / joined
JOINED: 'JOINED', // the user has started / joined the meeting
LEFT: 'LEFT', // the user has left the meeting
};

/**
Expand Down

0 comments on commit eaf8092

Please sign in to comment.