Merge pull request #733 from ericchiang/ldap-email-verified
connector/ldap: default email_verified to true
This commit is contained in:
commit
c11ee4d290
1 changed files with 3 additions and 0 deletions
|
@ -278,6 +278,9 @@ func (c *ldapConnector) identityFromEntry(user ldap.Entry) (ident connector.Iden
|
||||||
if ident.Email = getAttr(user, c.UserSearch.EmailAttr); ident.Email == "" {
|
if ident.Email = getAttr(user, c.UserSearch.EmailAttr); ident.Email == "" {
|
||||||
missing = append(missing, c.UserSearch.EmailAttr)
|
missing = append(missing, c.UserSearch.EmailAttr)
|
||||||
}
|
}
|
||||||
|
// TODO(ericchiang): Let this value be set from an attribute.
|
||||||
|
ident.EmailVerified = true
|
||||||
|
|
||||||
if c.UserSearch.NameAttr != "" {
|
if c.UserSearch.NameAttr != "" {
|
||||||
if ident.Username = getAttr(user, c.UserSearch.NameAttr); ident.Username == "" {
|
if ident.Username = getAttr(user, c.UserSearch.NameAttr); ident.Username == "" {
|
||||||
missing = append(missing, c.UserSearch.NameAttr)
|
missing = append(missing, c.UserSearch.NameAttr)
|
||||||
|
|
Reference in a new issue