Last active
January 17, 2019 21:47
-
-
Save ins429/ac4bb55b5597b005e8afbbdb8579a1c6 to your computer and use it in GitHub Desktop.
Room
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
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 |
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
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