From 1bf1c372968bc8403c7d493b34ac3957aa5a11d1 Mon Sep 17 00:00:00 2001 From: TekH Date: Wed, 3 Jun 2026 10:32:03 +0200 Subject: [PATCH] Update receiver-ui-envelope route and add transforms The `Path` matching rule for the `receiver-ui-envelope` route was updated to use `/envelope/{EnvelopeKey}` instead of the wildcard `/envelope/{**catch-all}` for more specific routing. Additionally, a `Transforms` section was added to the route, which includes a transformation to set the path to `/index.html`. --- EnvelopeGenerator.API/yarp.json | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/EnvelopeGenerator.API/yarp.json b/EnvelopeGenerator.API/yarp.json index 954846a3..427b5da4 100644 --- a/EnvelopeGenerator.API/yarp.json +++ b/EnvelopeGenerator.API/yarp.json @@ -29,9 +29,12 @@ "ClusterId": "receiver-ui", "Order": 100, "Match": { - "Path": "/envelope/{**catch-all}", + "Path": "/envelope/{EnvelopeKey}", "Methods": [ "GET", "HEAD" ] - } + }, + "Transforms": [ + { "PathSet": "/index.html" } + ] }, "receiver-ui-static-assets": { "ClusterId": "receiver-ui",