feat: openid discovery endpoint

This commit is contained in:
Stavros
2026-01-26 19:50:15 +02:00
parent 328064946b
commit a8f57e584e
5 changed files with 79 additions and 6 deletions

View File

@@ -113,5 +113,11 @@ func (app *BootstrapApp) setupRouter() (*gin.Engine, error) {
healthController.SetupRoutes()
wellknownController := controller.NewWellKnownController(controller.WellKnownControllerConfig{
OpenIDConnectIssuer: app.services.oidcService.GetIssuer(),
}, engine)
wellknownController.SetupRoutes()
return engine, nil
}