chore: rabbit comments

This commit is contained in:
Stavros
2026-06-14 18:20:17 +03:00
parent 4b323d07ab
commit 8426db306d
8 changed files with 23 additions and 25 deletions
-6
View File
@@ -163,12 +163,6 @@ func (app *BootstrapApp) Setup() error {
app.runtime.OAuthProviders[id] = provider
}
// setup oidc clients
for id, client := range app.config.OIDC.Clients {
client.ID = id
app.runtime.OIDCClients = append(app.runtime.OIDCClients, client)
}
// cookie domain
cookieDomainResolver := utils.GetCookieDomain
+5 -7
View File
@@ -71,13 +71,11 @@ func (app *BootstrapApp) setupServices() error {
}
err = app.dig.Invoke(func(i svcInput) error {
app.services = Services{
accessControlService: i.AccessControlService,
authService: i.AuthService,
ldapService: i.LDAPService,
oauthBrokerService: i.OAuthBrokerService,
tailscaleService: i.TailscaleService,
}
app.services.accessControlService = i.AccessControlService
app.services.authService = i.AuthService
app.services.ldapService = i.LDAPService
app.services.oauthBrokerService = i.OAuthBrokerService
app.services.tailscaleService = i.TailscaleService
return nil
})