From c786aef50b9772fdc8d294aebe4051680d8e981e Mon Sep 17 00:00:00 2001 From: Eric Bremner Date: Thu, 6 Oct 2022 10:49:29 -0400 Subject: [PATCH 1/2] ISTWCMS-5865: removing workflows config as now in uw_cfg_common --- .../workflows.workflow.uw_workflow.yml | 106 ------------------ 1 file changed, 106 deletions(-) delete mode 100644 config/install/workflows.workflow.uw_workflow.yml diff --git a/config/install/workflows.workflow.uw_workflow.yml b/config/install/workflows.workflow.uw_workflow.yml deleted file mode 100644 index bde9c4e..0000000 --- a/config/install/workflows.workflow.uw_workflow.yml +++ /dev/null @@ -1,106 +0,0 @@ -langcode: en -status: true -dependencies: - config: - - node.type.uw_ct_blog - - node.type.uw_ct_catalog_item - - node.type.uw_ct_contact - - node.type.uw_ct_event - - node.type.uw_ct_expand_collapse_group - - node.type.uw_ct_news_item - - node.type.uw_ct_opportunity - - node.type.uw_ct_profile - - node.type.uw_ct_service - - node.type.uw_ct_sidebar - - node.type.uw_ct_site_footer - - node.type.uw_ct_web_page - module: - - content_moderation -id: uw_workflow -label: 'UW workflow' -type: content_moderation -type_settings: - states: - draft: - label: Draft - weight: -10 - published: false - default_revision: false - published: - label: Published - weight: -10 - published: true - default_revision: true - uw_wf_archived: - label: Archived - weight: -10 - published: false - default_revision: true - uw_wf_needs_review: - label: 'Needs Review' - weight: -10 - published: false - default_revision: false - uw_wf_unpublished: - label: Unpublished - weight: 0 - published: false - default_revision: true - transitions: - archived: - label: Archive - from: - - draft - - published - - uw_wf_archived - - uw_wf_needs_review - to: uw_wf_archived - weight: 3 - draft: - label: 'Create draft' - from: - - draft - - published - - uw_wf_archived - - uw_wf_needs_review - to: draft - weight: 0 - needs_review: - label: 'Submit for review' - from: - - draft - - published - - uw_wf_archived - - uw_wf_needs_review - to: uw_wf_needs_review - weight: 1 - published: - label: Publish - from: - - draft - - published - - uw_wf_archived - - uw_wf_needs_review - to: published - weight: 2 - unpublish: - label: Unpublish - from: - - uw_wf_unpublished - to: draft - weight: 4 - entity_types: - node: - - uw_ct_blog - - uw_ct_catalog_item - - uw_ct_contact - - uw_ct_event - - uw_ct_expand_collapse_group - - uw_ct_news_item - - uw_ct_opportunity - - uw_ct_profile - - uw_ct_service - - uw_ct_sidebar - - uw_ct_site_footer - - uw_ct_web_page - default_moderation_state: draft -- GitLab From 52fda60b92005374e88bbac74a11bce9b0d908fc Mon Sep 17 00:00:00 2001 From: Eric Bremner Date: Thu, 6 Oct 2022 11:32:45 -0400 Subject: [PATCH 2/2] ISTWCMS-5865: trying to make features happy --- config/install/features.bundle.default.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/config/install/features.bundle.default.yml b/config/install/features.bundle.default.yml index 5a009e6..514daf4 100644 --- a/config/install/features.bundle.default.yml +++ b/config/install/features.bundle.default.yml @@ -42,6 +42,7 @@ assignments: types: config: features_bundle: features_bundle + workflow: workflow curated: true module: installed: true -- GitLab