From 21a31ba54bf5a625495d8edd7b9cb0b7ef6e81b6 Mon Sep 17 00:00:00 2001 From: Rishabh Date: Tue, 21 Jan 2025 15:52:21 +0530 Subject: [PATCH] fix: add service user org id in the get user response --- internal/api/v1beta1/user.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/api/v1beta1/user.go b/internal/api/v1beta1/user.go index c5877dab0..62a76bf2a 100644 --- a/internal/api/v1beta1/user.go +++ b/internal/api/v1beta1/user.go @@ -210,6 +210,7 @@ func (h Handler) GetCurrentUser(ctx context.Context, request *frontierv1beta1.Ge Id: principal.ServiceUser.ID, Title: principal.ServiceUser.Title, State: principal.ServiceUser.State, + OrgId: principal.ServiceUser.OrgID, Metadata: nil, CreatedAt: timestamppb.New(principal.ServiceUser.CreatedAt), UpdatedAt: timestamppb.New(principal.ServiceUser.UpdatedAt),