Further Drupal 8.6.4 changes. Some core files were not committed before a commit...
[yaffs-website] / web / core / profiles / demo_umami / config / install / workflows.workflow.editorial.yml
1 langcode: en
2 status: true
3 dependencies:
4   config:
5     - node.type.article
6     - node.type.page
7     - node.type.recipe
8   module:
9     - content_moderation
10 id: editorial
11 label: Editorial
12 type: content_moderation
13 type_settings:
14   states:
15     archived:
16       label: Archived
17       weight: 5
18       published: false
19       default_revision: true
20     draft:
21       label: Draft
22       published: false
23       default_revision: false
24       weight: -5
25     published:
26       label: Published
27       published: true
28       default_revision: true
29       weight: 0
30   transitions:
31     archive:
32       label: Archive
33       from:
34         - published
35       to: archived
36       weight: 2
37     archived_draft:
38       label: 'Restore to Draft'
39       from:
40         - archived
41       to: draft
42       weight: 3
43     archived_published:
44       label: Restore
45       from:
46         - archived
47       to: published
48       weight: 4
49     create_new_draft:
50       label: 'Create New Draft'
51       to: draft
52       weight: 0
53       from:
54         - draft
55         - published
56     publish:
57       label: Publish
58       to: published
59       weight: 1
60       from:
61         - draft
62         - published
63   entity_types:
64     node:
65       - article
66       - page
67       - recipe