From 77ef0dd15f114be7f96587581ad07965aa7be1d2 Mon Sep 17 00:00:00 2001 From: Carey Payette Date: Fri, 13 Dec 2024 17:41:59 -0500 Subject: [PATCH] Add prompts to exploded objects collection --- .../Orchestration/Orchestration/OrchestrationBuilder.cs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/dotnet/Orchestration/Orchestration/OrchestrationBuilder.cs b/src/dotnet/Orchestration/Orchestration/OrchestrationBuilder.cs index d90f706ad..26e2333a0 100644 --- a/src/dotnet/Orchestration/Orchestration/OrchestrationBuilder.cs +++ b/src/dotnet/Orchestration/Orchestration/OrchestrationBuilder.cs @@ -423,6 +423,14 @@ await cosmosDBService.PatchOperationsItemPropertiesAsync( + resourceObjectId.ObjectId, + currentUserIdentity); + explodedObjectsManager.TryAdd( + resourceObjectId.ObjectId, + prompt); + break; default: throw new OrchestrationException($"Unknown resource type '{resourcePath.MainResourceTypeName}'.");