- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for QuickNormalizeDN (0.58 sec)
-
internal/config/identity/ldap/ldap.go
return nil, err } res[userDistName] = set.CreateStringSet(groups...) } return res, nil } // QuickNormalizeDN - normalizes the given DN without checking if it is valid or // exists in the LDAP directory. Returns input if error func (l Config) QuickNormalizeDN(dn string) string { if normDN, err := xldap.NormalizeDN(dn); err == nil { return normDN } return dn }
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Fri Jul 12 01:04:53 UTC 2024 - 12.4K bytes - Viewed (1) -
cmd/iam.go
} if dnResult == nil { // dn not found - still attempt to detach if provided user is a DN. if !isAttach && sys.LDAPConfig.IsLDAPUserDN(r.User) { dn = sys.LDAPConfig.QuickNormalizeDN(r.User) } else { err = errNoSuchUser return updatedAt, addedOrRemoved, effectivePolicies, err } } else { dn = dnResult.NormDN } isGroup = false } else {Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Wed Oct 15 17:00:45 UTC 2025 - 76.5K bytes - Viewed (0)