You are here

workflows.workflow.varbase_simple_workflow.yml in Varbase Workflow 8

Same filename and directory in other branches
  1. 2.0.x config/install/workflows.workflow.varbase_simple_workflow.yml
config/install/workflows.workflow.varbase_simple_workflow.yml

File

config/install/workflows.workflow.varbase_simple_workflow.yml
View source
  1. langcode: en
  2. status: true
  3. dependencies:
  4. config:
  5. - node.type.landing_page
  6. - node.type.page
  7. module:
  8. - content_moderation
  9. id: varbase_simple_workflow
  10. label: 'Varbase simple workflow'
  11. type: content_moderation
  12. type_settings:
  13. states:
  14. archived:
  15. published: false
  16. default_revision: true
  17. label: Archived
  18. weight: 1
  19. draft:
  20. published: false
  21. default_revision: false
  22. label: Draft
  23. weight: -1
  24. published:
  25. label: Published
  26. published: true
  27. default_revision: true
  28. weight: 0
  29. transitions:
  30. archive:
  31. label: Archive
  32. from:
  33. - draft
  34. - published
  35. to: archived
  36. weight: 1
  37. create_new_draft:
  38. label: 'Create New Draft'
  39. to: draft
  40. weight: -1
  41. from:
  42. - draft
  43. - published
  44. publish:
  45. label: Publish
  46. to: published
  47. weight: 0
  48. from:
  49. - draft
  50. restore:
  51. label: 'Restore from archive'
  52. from:
  53. - archived
  54. to: draft
  55. weight: 2
  56. default_moderation_state: draft
  57. entity_types:
  58. node:
  59. - landing_page
  60. - page