Skip to content

Commit

Permalink
Add Login/Password fields for LDAP server
Browse files Browse the repository at this point in the history
  • Loading branch information
vkuznet committed Apr 4, 2024
1 parent 4643385 commit b864f18
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,10 @@ import (

// LDAP attributes
type LDAP struct {
URL string `mapstructure:"url"` // ldap url
BaseDN string `mapstructure:"baseDN` // ldap baseDN
URL string `mapstructure:"url"` // ldap url
BaseDN string `mapstructure:"baseDN` // ldap baseDN
Login string `mapstructure:"login"` // LDAP login to use
Password string `mapstructure:"password"` // LDAP password to use
}

// Zenodo credentials
Expand Down

0 comments on commit b864f18

Please sign in to comment.