Created
April 22, 2016 09:26
-
-
Save adriacidre/997bb1f4904bc3d655738a71af1e581a to your computer and use it in GitHub Desktop.
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
{ | |
"arcs": [ | |
{ | |
"from": "initialized", | |
"to": "verification_pending", | |
"when": "verify" | |
}, | |
{ | |
"from": "verification_pending", | |
"to": "to_transcode", | |
"when": "verification_done" | |
}, | |
{ | |
"from": "to_transcode", | |
"to": "transcoding", | |
"when": "transcode" | |
}, | |
{ | |
"from": "transcoding", | |
"to": "transcoded", | |
"when": "transcoded_done" | |
}, | |
{ | |
"from": "transcoded", | |
"to": "thumbnails_selection", | |
"when": "choose_thumbnails" | |
}, | |
{ | |
"from": "thumbnails_selection", | |
"to": "to_be_scheduled", | |
"when": "thumbnails_selection_done" | |
}, | |
{ | |
"from": "to_be_scheduled", | |
"to": "scheduled", | |
"when": "schedule_video" | |
}, | |
{ | |
"from": "scheduled", | |
"to": "published", | |
"when": "publish" | |
}, | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment