-
Notifications
You must be signed in to change notification settings - Fork 0
Statemachine
Tomas Stenlund edited this page Jun 29, 2022
·
3 revisions
A statemachine for the issues. It contains all states and transitions for one machine. Each machine controls an issue type.
Name | Type | Value Set | Description |
---|---|---|---|
name | string | alfanumeric | The name of the state machine |
states | State[] | GUID | The list of all states in the machine |
start | State | GUID | The starting state |
end | State | GUID | The end state |
A state and its transitions
Name | Type | Value Set | Description |
---|---|---|---|
name | string | alfanumeric | The name of the state |
transitions | State[] | GUID | All states that can follow this one |