-
-
Notifications
You must be signed in to change notification settings - Fork 8
Closed
Description
Describe the bug
With the newly introduced exclusion and inclusion lists the devs are able to exclude or include specific groups or properties in their final document, but it is broken.
The problem is the following:
private void filterGroupsAndProperties(TemplateCustomization templateCustomization, CombinedInput entry, List<PropertyGroup> groups) {
propertyGroupFilterService.postProcessPropertyGroups(new PostProcessPropertyGroupsCommand(templateCustomization, groups, entry.getIncludedGroups(), entry.getExcludedGroups(), entry.getIncludedProperties(), entry.getExcludedProperties()));
}
It should be:
private void filterGroupsAndProperties(TemplateCustomization templateCustomization, CombinedInput entry, List<PropertyGroup> groups) {
propertyGroupFilterService.postProcessPropertyGroups(new PostProcessPropertyGroupsCommand(templateCustomization, groups, entry.getExcludedGroups(), entry.getIncludedGroups(), entry.getExcludedProperties(), entry.getIncludedProperties()));
}
A few parameters are changed.
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working