Skip to content

Commit

Permalink
Enable augmentation by default on default LDAP connection
Browse files Browse the repository at this point in the history
  • Loading branch information
Yvand committed Apr 7, 2022
1 parent accd471 commit 553dcb0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion LDAPCP/LDAPCPConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -598,7 +598,10 @@ public static List<LDAPConnection> ReturnDefaultLDAPConnection()
{
return new List<LDAPConnection>
{
new LDAPConnection{UseSPServerConnectionToAD = true}
new LDAPConnection{
UseSPServerConnectionToAD = true,
EnableAugmentation = true,
}
};
}

Expand Down

0 comments on commit 553dcb0

Please sign in to comment.