123456789101112131415161718192021222324 |
- framework:
- workflows:
- cablemodem_workflow:
- type: state_machine
- marking_store:
- type: single_state
- arguments:
- - currentState
- supports:
- - CablemodemBundle\Entity\Cablemodem
- initial_place: active
- places:
- - active
- - disable
- transitions:
- add_config:
- from: active
- to: active
- disable:
- from: active
- to: disable
- active:
- from: disable
- to: active
|