Last active
April 9, 2018 22:44
-
-
Save r-k-b/d2e8a892153ba4a2f08bfc3350004487 to your computer and use it in GitHub Desktop.
Email subscription "state machine"
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
| digraph G { | |
| "new user" -> "double opt-in\nrequested"; | |
| "double opt-in\nrequested" -> "double opt-in\nconfirmed"; | |
| "new user" -> "unsubscribed" [color=grey]; | |
| "double opt-in\nrequested" -> "unsubscribed" [color=grey]; | |
| "double opt-in\nconfirmed" -> "unsubscribed"; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment