Skip to content

Instantly share code, notes, and snippets.

@pepe
Last active November 16, 2018 07:37
Show Gist options
  • Save pepe/2d57516faf46cb679733518aef0f7e77 to your computer and use it in GitHub Desktop.
Save pepe/2d57516faf46cb679733518aef0f7e77 to your computer and use it in GitHub Desktop.
User Evolution
User Evolution
Not a User*
submit sign up -> Not Verified User
Not Verified User
click verification link -> Verified User
Verified User
submit registration -> Registered User
Registered User
Free Position*
30 days -> Locked Position
buys package -> Trading Position
Locked Position
Trading Position
Authorized Position*
30 days -> Unauthorized Position
Unauthorized Position
buys package -> Authorized Position
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