From 634043ebd9651d9662f9e2e83e3a70d67545479b Mon Sep 17 00:00:00 2001 From: TekH Date: Fri, 5 Jun 2026 10:26:29 +0200 Subject: [PATCH] Reformat Transforms in yarp.json for readability Reformatted the `Transforms` sections in `yarp.json` to use multi-line JSON objects instead of single-line objects. This change improves the readability and maintainability of the configuration file without altering its functionality. --- EnvelopeGenerator.API/yarp.json | 23 +++++++++++++++++++---- 1 file changed, 19 insertions(+), 4 deletions(-) diff --git a/EnvelopeGenerator.API/yarp.json b/EnvelopeGenerator.API/yarp.json index 427b5da4..840d1932 100644 --- a/EnvelopeGenerator.API/yarp.json +++ b/EnvelopeGenerator.API/yarp.json @@ -44,9 +44,21 @@ "Methods": [ "GET", "HEAD" ] }, "Transforms": [ - { "ResponseHeader": "Cache-Control", "Set": "no-cache, no-store, must-revalidate", "When": "Always" }, - { "ResponseHeader": "Pragma", "Set": "no-cache", "When": "Always" }, - { "ResponseHeader": "Expires", "Set": "0", "When": "Always" } + { + "ResponseHeader": "Cache-Control", + "Set": "no-cache, no-store, must-revalidate", + "When": "Always" + }, + { + "ResponseHeader": "Pragma", + "Set": "no-cache", + "When": "Always" + }, + { + "ResponseHeader": "Expires", + "Set": "0", + "When": "Always" + } ] }, "receiver-ui-annotation-fake": { @@ -78,7 +90,10 @@ }, "Transforms": [ { "PathPattern": "/api/auth/envelope-receiver/{key}" }, - { "QueryValueParameter": "cookie", "Set": "true" } + { + "QueryValueParameter": "cookie", + "Set": "true" + } ] } },