From 85a6078cbc2b41171301141e887ebbba8562e854 Mon Sep 17 00:00:00 2001 From: rvazarkar Date: Tue, 30 Jul 2024 10:48:51 -0400 Subject: [PATCH] fix: missing properties in generator --- src/CommonLib/LdapProducerQueryGenerator.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/CommonLib/LdapProducerQueryGenerator.cs b/src/CommonLib/LdapProducerQueryGenerator.cs index ec38f28c..1fc7ea73 100644 --- a/src/CommonLib/LdapProducerQueryGenerator.cs +++ b/src/CommonLib/LdapProducerQueryGenerator.cs @@ -28,6 +28,10 @@ public static GeneratedLdapParameters GenerateDefaultPartitionParameters(Collect properties.AddRange(CommonProperties.ACLProps); } + if (methods.HasFlag(CollectionMethod.ObjectProps)) { + properties.AddRange(CommonProperties.ObjectPropsProps); + } + if (methods.IsComputerCollectionSet()) { properties.AddRange(CommonProperties.ComputerMethodProps); }