Created
June 3, 2016 20:15
-
-
Save daftspunk/22b92ca99e046f3ecc1e48066700dcf3 to your computer and use it in GitHub Desktop.
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
# =================================== | |
# Workflow Definitions | |
# =================================== | |
workflow: | |
name: Invoice status | |
startStep: draft | |
steps: | |
draft: | |
label: Draft | |
transitions: | |
approved: * | |
approved: | |
label: Approved | |
transitions: | |
paid: * | |
void: * | |
paid: | |
label: Paid | |
transitions: | |
void: * | |
void: | |
label: Void | |
stepForm: | |
fields: | |
color: | |
label: Color | |
type: colorpicker | |
transitionForm: | |
fields: | |
comment: | |
label: Comment | |
type: textarea |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment