mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
18 lines
350 B
Go
18 lines
350 B
Go
package api
|
|
|
|
import (
|
|
"github.com/grafana/grafana/pkg/services/ldap"
|
|
)
|
|
|
|
func (server *HTTPServer) ReloadLDAPCfg() Response {
|
|
if !ldap.IsEnabled() {
|
|
return Error(400, "LDAP is not enabled", nil)
|
|
}
|
|
|
|
err := ldap.ReloadConfig()
|
|
if err != nil {
|
|
return Error(500, "Failed to reload ldap config.", err)
|
|
}
|
|
return Success("LDAP config reloaded")
|
|
}
|