Last active
November 16, 2018 07:37
-
-
Save pepe/2d57516faf46cb679733518aef0f7e77 to your computer and use it in GitHub Desktop.
User Evolution
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
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 |
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
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