Skip to content
Snippets Groups Projects

Issue #3466627 by heddn: Config schema missing

Files
2
@@ -12,78 +12,78 @@ type_settings:
default_state: draft
default_transition: new_draft
states:
draft:
label: Draft
weight: '0'
locked: false
status: open
review:
label: 'Ready for Review'
weight: '30'
locked: false
status: open
approved:
label: Approved
weight: '50'
weight: 50
locked: true
status: open
draft:
label: Draft
weight: 0
locked: false
status: open
published:
label: Published
weight: '100'
weight: 100
locked: true
status: closed
review:
label: 'Ready for Review'
weight: 30
locked: false
status: open
transitions:
new_draft:
label: 'New draft'
from: { }
to: draft
weight: '0'
access_callback: entity_workflow_workspace_transition_access
submit_for_review:
label: 'Submit for Review'
from:
- draft
to: review
transition_log: true
action_link: true
weight: '10'
access_callback: entity_workflow_workspace_transition_access
approve:
label: Approve
from:
- review
to: approved
weight: 100
access_callback: entity_workflow_workspace_transition_access
transition_log: true
action_link: true
weight: '100'
access_callback: entity_workflow_workspace_transition_access
back_to_draft:
label: 'Back to Draft'
from:
- review
- approved
to: draft
weight: 20
access_callback: entity_workflow_workspace_transition_access
transition_log: true
action_link: true
weight: '20'
new_draft:
label: 'New draft'
from: { }
to: draft
weight: 0
access_callback: entity_workflow_workspace_transition_access
publish:
label: Publish
from:
- approved
to: published
weight: 100
access_callback: entity_workflow_workspace_transition_access
transition_log: true
action_link: true
weight: '100'
submit_for_review:
label: 'Submit for Review'
from:
- draft
to: review
weight: 10
access_callback: entity_workflow_workspace_transition_access
transition_log: true
action_link: true
unpublish:
label: Unpublish
from:
- published
to: draft
weight: 110
access_callback: entity_workflow_workspace_transition_access
transition_log: true
action_link: true
weight: '110'
access_callback: entity_workflow_workspace_transition_access
default_state_callback: null
default_transition_log: null
Loading