workflow_list.yml.dist 949 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. #framework:
  2. # workflows:
  3. # olt_workflow:
  4. # type: state_machine
  5. # marking_store:
  6. # type: single_state
  7. # arguments:
  8. # - currentState
  9. # supports:
  10. # - RadiusBundle\Entity\OLT
  11. # initial_place: disabled
  12. # places:
  13. # - enabled
  14. # - disabled
  15. # transitions:
  16. # disable:
  17. # from: enabled
  18. # to: disabled
  19. # enable:
  20. # from: disabled
  21. # to: enabled
  22. # onu_workflow:
  23. # type: state_machine
  24. # marking_store:
  25. # type: single_state
  26. # arguments:
  27. # - currentState
  28. # supports:
  29. # - RadiusBundle\Entity\ONU
  30. # initial_place: active
  31. # places:
  32. # - active
  33. # - disable
  34. # transitions:
  35. # add_config:
  36. # from: active
  37. # to: active
  38. # disable:
  39. # from: active
  40. # to: disable
  41. # active:
  42. # from: disable
  43. # to: active