mirror of
https://github.com/freedbygrace/ActiveDirectoryManager.git
synced 2026-08-27 19:17:07 +00:00
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:
@@ -211,7 +211,8 @@ export const RuleEditor: React.FC<RuleEditorProps> = ({ rule, onSave, onCancel }
|
|||||||
connectionIds: formData.connections,
|
connectionIds: formData.connections,
|
||||||
createGroupIfNotExists: formData.createGroupIfNotExists,
|
createGroupIfNotExists: formData.createGroupIfNotExists,
|
||||||
createOUIfNotExists: formData.createOUIfNotExists,
|
createOUIfNotExists: formData.createOUIfNotExists,
|
||||||
createGroupForEachAttributeValue: formData.createGroupForEachAttributeValue
|
createGroupForEachAttributeValue: formData.createGroupForEachAttributeValue,
|
||||||
|
createOUForEachAttributeValue: formData.createOUForEachAttributeValue
|
||||||
};
|
};
|
||||||
|
|
||||||
onSave(ruleData, schedules);
|
onSave(ruleData, schedules);
|
||||||
@@ -229,7 +230,8 @@ export const RuleEditor: React.FC<RuleEditorProps> = ({ rule, onSave, onCancel }
|
|||||||
variablePattern: formData.variablePattern || null,
|
variablePattern: formData.variablePattern || null,
|
||||||
createGroupIfNotExists: formData.createGroupIfNotExists,
|
createGroupIfNotExists: formData.createGroupIfNotExists,
|
||||||
createOUIfNotExists: formData.createOUIfNotExists,
|
createOUIfNotExists: formData.createOUIfNotExists,
|
||||||
createGroupForEachAttributeValue: formData.createGroupForEachAttributeValue
|
createGroupForEachAttributeValue: formData.createGroupForEachAttributeValue,
|
||||||
|
createOUForEachAttributeValue: formData.createOUForEachAttributeValue
|
||||||
},
|
},
|
||||||
conditions
|
conditions
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user