diff --git a/ccm-cms/src/main/java/org/librecms/contentsection/ContentSectionImExporter.java b/ccm-cms/src/main/java/org/librecms/contentsection/ContentSectionImExporter.java index 222ce83a2..bfcbc5639 100644 --- a/ccm-cms/src/main/java/org/librecms/contentsection/ContentSectionImExporter.java +++ b/ccm-cms/src/main/java/org/librecms/contentsection/ContentSectionImExporter.java @@ -19,13 +19,13 @@ package org.librecms.contentsection; import org.libreccm.categorization.Category; -import org.libreccm.core.Resource; import org.libreccm.core.ResourceType; import org.libreccm.imexport.AbstractEntityImExporter; import org.libreccm.imexport.Exportable; import org.libreccm.imexport.Processes; +import org.libreccm.workflow.Workflow; +import org.librecms.lifecycle.LifecycleDefinition; -import java.util.Collections; import java.util.Objects; import java.util.Set; @@ -54,7 +54,9 @@ public class ContentSectionImExporter protected Set> getRequiredEntities() { return Set.of( Category.class, - ResourceType.class + ResourceType.class, + LifecycleDefinition.class, + Workflow.class ); }