You are here

workflows.workflow.bureaucracy_workflow.yml in Workflows Field 8

tests/modules/workflows_field_test_workflows/config/install/workflows.workflow.bureaucracy_workflow.yml

File

tests/modules/workflows_field_test_workflows/config/install/workflows.workflow.bureaucracy_workflow.yml
View source
  1. langcode: en
  2. status: true
  3. dependencies:
  4. module:
  5. - workflows_field
  6. id: bureaucracy_workflow
  7. label: 'Bureaucracy Workflow'
  8. type: workflows_field
  9. type_settings:
  10. initial_state: in_discussion
  11. states:
  12. approved:
  13. label: Approved
  14. weight: -9
  15. implementing:
  16. label: Implementing
  17. weight: -10
  18. in_discussion:
  19. label: 'In Discussion'
  20. weight: -6
  21. planning:
  22. label: Planning
  23. weight: -7
  24. rejected:
  25. label: Rejected
  26. weight: -8
  27. transitions:
  28. approved_project:
  29. label: 'Approved Project'
  30. from:
  31. - in_discussion
  32. to: approved
  33. weight: 0
  34. ready_for_implementation:
  35. label: 'Ready for implementation'
  36. from:
  37. - planning
  38. to: implementing
  39. weight: 3
  40. ready_for_planning:
  41. label: 'Ready for planning'
  42. from:
  43. - approved
  44. to: planning
  45. weight: 2
  46. rejected_project:
  47. label: 'Rejected Project'
  48. from:
  49. - in_discussion
  50. to: rejected
  51. weight: 1