Files
opencloud/extensions/glauth/pkg/config/ldap.go
Christian Richter d4442941a1 refactor glauth
Signed-off-by: Christian Richter <crichter@owncloud.com>
2022-04-13 17:04:37 +02:00

9 lines
232 B
Go

package config
// Ldap defines the available LDAP configuration.
type Ldap struct {
Enabled bool `yaml:"enabled" env:"GLAUTH_LDAP_ENABLED"`
Addr string `yaml:"addr" env:"GLAUTH_LDAP_ADDR"`
Namespace string `yaml:"-"`
}