fix responsetype value
All checks were successful
Build and Publish / build-release (push) Successful in 3m41s

This commit is contained in:
2026-04-20 12:10:30 -05:00
parent 48d30dcc84
commit de5af88030
2 changed files with 11 additions and 22 deletions

View File

@@ -110,7 +110,7 @@ func (wr *wrappedOIDCAppReconciler) Reconcile(ctx context.Context, ztdClient *cl
}
responseTypes := []application.OIDCResponseType{}
for _, r := range wr.OIDCApp.Spec.ResponseTypes {
responseTypes = append(responseTypes, application.OIDCResponseType(application.OIDCApplicationType_value[string(r)]))
responseTypes = append(responseTypes, application.OIDCResponseType(application.OIDCResponseType_value[string(r)]))
}
grantTypes := []application.OIDCGrantType{}
for _, r := range wr.OIDCApp.Spec.GrantTypes {