Enhance dynamic group management by adding support for creating OUs per attribute value.

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 705f2157-ef97-4fbd-89e4-8c7f2ecaea90
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/7ed01c5f-a82d-405a-b728-b2e3d127c60c/bd588229-3917-4f6d-b18b-0883fae0cebe.jpg
This commit is contained in:
alphaeusmote
2025-04-10 16:07:27 +00:00
parent c3c92a7854
commit 64124db3d0
@@ -211,7 +211,8 @@ export const RuleEditor: React.FC<RuleEditorProps> = ({ rule, onSave, onCancel }
connectionIds: formData.connections,
createGroupIfNotExists: formData.createGroupIfNotExists,
createOUIfNotExists: formData.createOUIfNotExists,
createGroupForEachAttributeValue: formData.createGroupForEachAttributeValue
createGroupForEachAttributeValue: formData.createGroupForEachAttributeValue,
createOUForEachAttributeValue: formData.createOUForEachAttributeValue
};
onSave(ruleData, schedules);
@@ -229,7 +230,8 @@ export const RuleEditor: React.FC<RuleEditorProps> = ({ rule, onSave, onCancel }
variablePattern: formData.variablePattern || null,
createGroupIfNotExists: formData.createGroupIfNotExists,
createOUIfNotExists: formData.createOUIfNotExists,
createGroupForEachAttributeValue: formData.createGroupForEachAttributeValue
createGroupForEachAttributeValue: formData.createGroupForEachAttributeValue,
createOUForEachAttributeValue: formData.createOUForEachAttributeValue
},
conditions
});