File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ require (
1111 github.com/charmbracelet/huh v0.8.0
1212 github.com/docker/docker v28.5.2+incompatible
1313 github.com/gin-gonic/gin v1.11.0
14+ github.com/go-jose/go-jose/v4 v4.1.3
1415 github.com/go-ldap/ldap/v3 v3.4.12
1516 github.com/golang-migrate/migrate/v4 v4.19.1
1617 github.com/google/go-querystring v1.2.0
@@ -61,7 +62,6 @@ require (
6162 github.com/gabriel-vasile/mimetype v1.4.10 // indirect
6263 github.com/gin-contrib/sse v1.1.0 // indirect
6364 github.com/go-asn1-ber/asn1-ber v1.5.8-0.20250403174932-29230038a667 // indirect
64- github.com/go-jose/go-jose/v4 v4.1.3 // indirect
6565 github.com/go-logr/logr v1.4.3 // indirect
6666 github.com/go-logr/stdr v1.2.2 // indirect
6767 github.com/go-playground/locales v0.14.1 // indirect
Original file line number Diff line number Diff line change @@ -62,6 +62,8 @@ func (ldap *LdapService) Init() error {
6262 return nil
6363 }
6464
65+ ldap .isConfigured = true
66+
6567 // Check whether authentication with client certificate is possible
6668 if ldap .config .AuthCert != "" && ldap .config .AuthKey != "" {
6769 cert , err := tls .LoadX509KeyPair (ldap .config .AuthCert , ldap .config .AuthKey )
Original file line number Diff line number Diff line change @@ -110,6 +110,8 @@ func (service *OIDCService) Init() error {
110110 return nil
111111 }
112112
113+ service .isConfigured = true
114+
113115 // Ensure issuer is https
114116 uissuer , err := url .Parse (service .config .Issuer )
115117
You can’t perform that action at this time.
0 commit comments