summaryrefslogtreecommitdiff
path: root/internal/configuration/schema/const.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/configuration/schema/const.go')
-rw-r--r--internal/configuration/schema/const.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/internal/configuration/schema/const.go b/internal/configuration/schema/const.go
index 3015c1527..378473bfc 100644
--- a/internal/configuration/schema/const.go
+++ b/internal/configuration/schema/const.go
@@ -64,6 +64,9 @@ const (
// LDAPImplementationActiveDirectory is the string for the Active Directory LDAP implementation.
LDAPImplementationActiveDirectory = "activedirectory"
+
+ // LDAPImplementationFreeIPA is the string for the FreeIPA LDAP implementation.
+ LDAPImplementationFreeIPA = "freeipa"
)
// TOTP Algorithm.
@@ -99,3 +102,10 @@ const (
blockCERTIFICATE = "CERTIFICATE"
blockRSAPRIVATEKEY = "RSA PRIVATE KEY"
)
+
+const (
+ ldapAttrMail = "mail"
+ ldapAttrUserID = "uid"
+ ldapAttrDisplayName = "displayName"
+ ldapAttrCommonName = "cn"
+)