You are here

workflows.workflow.varbase_simple_workflow.yml in Varbase Workflow 2.0.x

Same filename and directory in other branches
  1. 8 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. module:
  5. - content_moderation
  6. id: varbase_simple_workflow
  7. label: Simple
  8. type: content_moderation
  9. type_settings:
  10. states:
  11. archived:
  12. published: false
  13. default_revision: true
  14. label: "Archived / Unpublished"
  15. weight: 1
  16. draft:
  17. published: false
  18. default_revision: false
  19. label: Draft
  20. weight: -1
  21. published:
  22. label: Published
  23. published: true
  24. default_revision: true
  25. weight: 0
  26. transitions:
  27. archive:
  28. label: "Archive / Unpublish"
  29. from:
  30. - published
  31. to: archived
  32. weight: 1
  33. archived_published:
  34. label: "Restore from archive"
  35. from:
  36. - archived
  37. to: published
  38. weight: 3
  39. create_new_draft:
  40. label: "Create new draft"
  41. to: draft
  42. weight: -1
  43. from:
  44. - archived
  45. - draft
  46. - published
  47. publish:
  48. label: Publish
  49. to: published
  50. weight: 0
  51. from:
  52. - draft
  53. - published
  54. default_moderation_state: draft
  55. entity_types: {}