Skip to content

Commit

Permalink
fix: missing properties in generator
Browse files Browse the repository at this point in the history
  • Loading branch information
rvazarkar committed Jul 30, 2024
1 parent 2874b9e commit 85a6078
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/CommonLib/LdapProducerQueryGenerator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit 85a6078

Please sign in to comment.