Fix grammar in LDAP federation group mapper

Closes #44341

Signed-off-by: schnillerman <till.reymann@gmail.com>
This commit is contained in:
schnillerman 2025-11-20 00:11:24 +01:00 committed by GitHub
parent 13ef89664c
commit 4e87b1f5a0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View File

@ -94,13 +94,13 @@ public class GroupLDAPStorageMapperFactory extends AbstractLDAPStorageMapperFact
ProviderConfigurationBuilder config = ProviderConfigurationBuilder.create()
.property().name(GroupMapperConfig.GROUPS_DN)
.label("LDAP Groups DN")
.helpText("LDAP DN where are groups of this tree saved. For example 'ou=groups,dc=example,dc=org' ")
.helpText("LDAP DN where groups of this tree are saved. For example 'ou=groups,dc=example,dc=org' ")
.type(ProviderConfigProperty.STRING_TYPE)
.required(true)
.add()
.property().name(GroupMapperConfig.GROUPS_RELATIVE_CREATE_DN)
.label("Relative creation DN")
.helpText("LDAP DN where are groups of this tree will be created relative to the 'LDAP Groups DN' ")
.helpText("LDAP DN where groups of this tree will be created relative to the 'LDAP Groups DN' ")
.type(ProviderConfigProperty.STRING_TYPE)
.add()
.property().name(GroupMapperConfig.GROUP_NAME_LDAP_ATTRIBUTE)

View File

@ -33,7 +33,7 @@ import org.keycloak.storage.ldap.mappers.membership.CommonLDAPGroupMapperConfig;
*/
public class GroupMapperConfig extends CommonLDAPGroupMapperConfig {
// LDAP DN where are groups of this tree saved.
// LDAP DN where groups of this tree are saved.
public static final String GROUPS_DN = "groups.dn";
public static final String GROUPS_RELATIVE_CREATE_DN = "groups.relative.create.dn";