From 64124db3d056061ffe745d20db5777fe777eeb02 Mon Sep 17 00:00:00 2001 From: alphaeusmote <41258468-alphaeusmote@users.noreply.replit.com> Date: Thu, 10 Apr 2025 16:07:27 +0000 Subject: [PATCH] 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 --- client/src/components/dynamic-groups/rule-editor.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/client/src/components/dynamic-groups/rule-editor.tsx b/client/src/components/dynamic-groups/rule-editor.tsx index d862eb7..165a373 100644 --- a/client/src/components/dynamic-groups/rule-editor.tsx +++ b/client/src/components/dynamic-groups/rule-editor.tsx @@ -211,7 +211,8 @@ export const RuleEditor: React.FC = ({ 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 = ({ rule, onSave, onCancel } variablePattern: formData.variablePattern || null, createGroupIfNotExists: formData.createGroupIfNotExists, createOUIfNotExists: formData.createOUIfNotExists, - createGroupForEachAttributeValue: formData.createGroupForEachAttributeValue + createGroupForEachAttributeValue: formData.createGroupForEachAttributeValue, + createOUForEachAttributeValue: formData.createOUForEachAttributeValue }, conditions });