From 895fd5c509b9a63d0f07d7e86046d9a57d49227a Mon Sep 17 00:00:00 2001 From: TekH Date: Thu, 11 Jun 2026 11:58:58 +0200 Subject: [PATCH] Add route for DxReportViewer in yarp.json Introduce a new route configuration for `receiver-ui-envelope-dxreportviewer` in `yarp.json`. The route matches requests to `/envelope/{EnvelopeKey}/DxReportViewer` for `GET` and `HEAD` methods. It is part of the `receiver-ui` cluster, with an order of `90`, and includes a transformation to redirect the path to `/index.html`. This change supports a new endpoint in the application. --- EnvelopeGenerator.API/yarp.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/EnvelopeGenerator.API/yarp.json b/EnvelopeGenerator.API/yarp.json index 7e0cd315..aba392dd 100644 --- a/EnvelopeGenerator.API/yarp.json +++ b/EnvelopeGenerator.API/yarp.json @@ -34,6 +34,17 @@ { "PathSet": "/index.html" } ] }, + "receiver-ui-envelope-dxreportviewer": { + "ClusterId": "receiver-ui", + "Order": 90, + "Match": { + "Path": "/envelope/{EnvelopeKey}/DxReportViewer", + "Methods": [ "GET", "HEAD" ] + }, + "Transforms": [ + { "PathSet": "/index.html" } + ] + }, "receiver-ui-blazor-framework": { "ClusterId": "receiver-ui", "Order": 50,