Skip to content
workflows.workflow.editorial.yml 1.06 KiB
Newer Older
langcode: en
status: true
dependencies:
  module:
    - content_moderation
id: editorial
type: content_moderation
type_settings:
  states:
    archived:
      published: false
      default_revision: true
    draft:
      published: false
      default_revision: false
      published: true
      default_revision: true
      weight: 0
  transitions:
    create_new_draft:
      label: 'Create New Draft'
      to: draft
      weight: 0
      from:
        - draft
        - published
    publish:
      label: Publish
      to: published
      weight: 1
      from:
        - draft
        - published
    archive:
      label: Archive
      from:
        - published
      to: archived
      weight: 2
    archived_draft:
      label: 'Restore to Draft'
      from:
        - archived
      to: draft
      weight: 3
    archived_published:
      label: Restore
      from:
        - archived
      to: published
      weight: 4