mirror of
https://github.com/zitadel/zitadel.git
synced 2025-06-02 07:28:19 +00:00

* feat: dynamic issuer * feat: default language from context * remove zitadel docs from defaults * remove ConsoleOverwriteDir * remove notification endpoints from defaults * custom domains in emails * remove (external) domain * external domain completely removed, console handling fixed * fix test * fix defaults.yaml
24 lines
756 B
Go
24 lines
756 B
Go
package management
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/caos/oidc/v2/pkg/oidc"
|
|
|
|
"github.com/caos/zitadel/internal/api/authz"
|
|
"github.com/caos/zitadel/internal/api/http"
|
|
mgmt_pb "github.com/caos/zitadel/pkg/grpc/management"
|
|
)
|
|
|
|
func (s *Server) Healthz(context.Context, *mgmt_pb.HealthzRequest) (*mgmt_pb.HealthzResponse, error) {
|
|
return &mgmt_pb.HealthzResponse{}, nil
|
|
}
|
|
|
|
func (s *Server) GetOIDCInformation(ctx context.Context, _ *mgmt_pb.GetOIDCInformationRequest) (*mgmt_pb.GetOIDCInformationResponse, error) {
|
|
issuer := http.BuildOrigin(authz.GetInstance(ctx).RequestedDomain(), s.externalSecure) + s.issuerPath
|
|
return &mgmt_pb.GetOIDCInformationResponse{
|
|
Issuer: issuer,
|
|
DiscoveryEndpoint: issuer + oidc.DiscoveryEndpoint,
|
|
}, nil
|
|
}
|