mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-29 00:11:21 -05:00
9 lines
232 B
Go
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:"-"`
|
|
}
|