Skip to content

Instantly share code, notes, and snippets.

@pepe
Last active October 24, 2019 11:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pepe/52ab950d2a6a1a7a1c96532a3ad7ecdc to your computer and use it in GitHub Desktop.
Save pepe/52ab950d2a6a1a7a1c96532a3ad7ecdc to your computer and use it in GitHub Desktop.
Publishing House Membership
Publishing House Membership
Unknow Artist
create account -> Registered Artist
Registration
Registered Artist
prove her identity -> Known Artist
Known Artist
choose Writer career -> New Writer
choose Illustrator career -> New Illustrator
choose Editor career -> New Editor
Writer
New Writer
upload first Text -> Writer with Text
Writer with Text
receive Editor request -> Writer with Edited Text
Writer with Edited Text
correct Text
communicate with Editor
finish Edited Text -> Writer with Finished Text
Writer with Finished Text
Editor
New Editor
sees Texts
chooses Text -> Editor with Edited Text
Editor with Edited Text
communicate with Writer
request Text correctures
finish Edited Text -> Editor with Finished Text
Editor with Finished Text
Illustrator
New Illustrator
upload first Illustration -> Illustrator with Illustration
Illustrator with Illustration
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