providers/ldap: add unbind flow execution (#4484)
add unbind flow execution Signed-off-by: Jens Langhammer <jens@goauthentik.io> Signed-off-by: Jens Langhammer <jens@goauthentik.io>
This commit is contained in:
@ -81,7 +81,7 @@ func (ps *ProxyServer) Type() string {
|
||||
return "proxy"
|
||||
}
|
||||
|
||||
func (ps *ProxyServer) TimerFlowCacheExpiry() {}
|
||||
func (ps *ProxyServer) TimerFlowCacheExpiry(context.Context) {}
|
||||
|
||||
func (ps *ProxyServer) GetCertificate(serverName string) *tls.Certificate {
|
||||
app, ok := ps.apps[serverName]
|
||||
@ -163,6 +163,10 @@ func (ps *ProxyServer) Start() error {
|
||||
return nil
|
||||
}
|
||||
|
||||
func (ps *ProxyServer) Stop() error {
|
||||
return nil
|
||||
}
|
||||
|
||||
func (ps *ProxyServer) serve(listener net.Listener) {
|
||||
srv := &http.Server{Handler: ps.mux}
|
||||
|
||||
|
Reference in New Issue
Block a user