mirror of
https://github.com/ansible/awx.git
synced 2024-11-01 08:21:15 +03:00
92dc450940
* Adds gerkin feature file for networking visualization * Adds implementation details to networking.md
38 lines
592 B
YAML
38 lines
592 B
YAML
finite_state_machine_id: 8
|
|
name: time_fsm
|
|
states:
|
|
- id: 1
|
|
label: Present
|
|
x: 256
|
|
y: 123
|
|
- id: 2
|
|
label: Start
|
|
x: 245
|
|
y: -161
|
|
- id: 3
|
|
label: Past
|
|
x: -115
|
|
y: 129
|
|
transitions:
|
|
- from_state: Past
|
|
label: onRedo
|
|
to_state: Present
|
|
- from_state: Past
|
|
label: onMouseWheel
|
|
to_state: Present
|
|
- from_state: Past
|
|
label: onKeyDown
|
|
to_state: Present
|
|
- from_state: Start
|
|
label: start
|
|
to_state: Present
|
|
- from_state: Present
|
|
label: onUndo
|
|
to_state: Past
|
|
- from_state: Present
|
|
label: onMouseWheel
|
|
to_state: Past
|
|
- from_state: Present
|
|
label: onKeyDown
|
|
to_state: Past
|