Skip to content

Commit

Permalink
Update LDAPProviderConfiguration.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
Yvand committed Feb 16, 2024
1 parent eafb450 commit bb9a131
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ public interface ILdapProviderSettings
ClaimTypeConfigCollection ClaimTypes { get; }

/// <summary>
/// Gets or sets whether to skip Microsoft Entra ID lookup and consider any input as valid.
/// This can be useful to keep people picker working even if connectivity with the Azure server is lost.
/// Gets or sets whether to skip the requests to LDAP and consider any input as valid.
/// This can be useful to keep people picker working even if connectivity with the directory is lost.
/// </summary>
bool AlwaysResolveUserInput { get; }

Expand All @@ -34,7 +34,7 @@ public interface ILdapProviderSettings
bool FilterExactMatchOnly { get; }

/// <summary>
/// Gets or sets whether to return the Microsoft Entra ID groups that the user is a member of.
/// Gets or sets whether to return the trusted groups that the user is a member of.
/// </summary>
bool EnableAugmentation { get; }

Expand All @@ -44,17 +44,17 @@ public interface ILdapProviderSettings
string EntityDisplayTextPrefix { get; }

/// <summary>
/// Gets or sets the timeout in milliseconds before an operation to Microsoft Entra ID is canceled.
/// Gets or sets the timeout in seconds before an operation to LDAP directory is canceled.
/// </summary>
int Timeout { get; }

/// <summary>
/// This property is not used by EntraCP and is available to developers for their own needs
/// This property is not used by LDAPCP and is available to developers for their own needs
/// </summary>
string CustomData { get; }
#endregion

#region EntraID specific settings
#region LDAP specific settings
/// <summary>
/// Gets the list of Azure tenants to use to get entities
/// </summary>
Expand All @@ -78,7 +78,7 @@ public class LdapProviderSettings : ILdapProviderSettings
public string CustomData { get; set; }
#endregion

#region EntraID specific settings
#region LDAP specific settings
public List<DirectoryConnection> LdapConnections { get; set; } = new List<DirectoryConnection>();
public bool FilterEnabledUsersOnly { get; set; } = true;
public bool FilterSecurityGroupsOnly { get; set; } = true;
Expand Down

0 comments on commit bb9a131

Please sign in to comment.