fix: add oidc service to services struct on init

This commit is contained in:
Stavros
2026-06-15 16:52:16 +03:00
parent c3dd056a56
commit 5e2b6bc8bf
+1
View File
@@ -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
})