From 8ec42aacd22ff493bc97267d5ca5effc2296076e Mon Sep 17 00:00:00 2001 From: HaimKortovich Date: Mon, 4 May 2026 11:26:05 -0500 Subject: [PATCH] debug 2 --- api/v1alpha1/project_types.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/api/v1alpha1/project_types.go b/api/v1alpha1/project_types.go index 43f8f27..dffe004 100644 --- a/api/v1alpha1/project_types.go +++ b/api/v1alpha1/project_types.go @@ -18,6 +18,7 @@ package v1alpha1 import ( "context" + "fmt" "k8s.io/apimachinery/pkg/api/meta" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" @@ -96,6 +97,7 @@ func (d *Project) IsReady() bool { } func (d *Project) ConnectionRef(ctx context.Context, refresolver *RefResolver) (*ConnectionRef, error) { + fmt.Println(d.Spec.OrganizationRef) // Check if using direct Zitadel ID reference if d.Spec.OrganizationRef.ID != "" { return &d.Spec.OrganizationRef.ConnectionRef, nil