From 5e2b6bc8bff7786d7e6c8cd7fa88025cde58e817 Mon Sep 17 00:00:00 2001 From: Stavros Date: Mon, 15 Jun 2026 16:52:16 +0300 Subject: [PATCH] fix: add oidc service to services struct on init --- internal/bootstrap/service_bootstrap.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/bootstrap/service_bootstrap.go b/internal/bootstrap/service_bootstrap.go index c9001c9e..11dbb693 100644 --- a/internal/bootstrap/service_bootstrap.go +++ b/internal/bootstrap/service_bootstrap.go @@ -57,6 +57,7 @@ func (app *BootstrapApp) setupServices() error { app.services.authService = i.AuthService app.services.ldapService = i.LDAPService app.services.oauthBrokerService = i.OAuthBrokerService + app.services.oidcService = i.OIDCService app.services.tailscaleService = i.TailscaleService return nil })