Skip to content

Instantly share code, notes, and snippets.

@ins429
Last active January 17, 2019 21:47
Show Gist options
  • Save ins429/ac4bb55b5597b005e8afbbdb8579a1c6 to your computer and use it in GitHub Desktop.
Save ins429/ac4bb55b5597b005e8afbbdb8579a1c6 to your computer and use it in GitHub Desktop.
Room
Room
WaitingRoomForLockedRoom
conference full -> conference is full
waiting owner
owner joined -> request to join
request to join
request -> requesting to join
requesting to join
accepted -> consent to recording
rejected -> rejected
rejected
request to join -> request to join
consent to recording
accept -> recording setup
reject -> not recording setup
recording setup
join -> TwilioRoom
not recording setup
join -> TwilioRoom
conference is full
conference is not full -> request to join
TwilioRoom
function render(model){
let current_state_name = model.active_states[0].name;
return $("h1",
{style: {color: "darkBlue"}},
`The current state is: ${current_state_name}`);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment