Proxy all requests - even a repeated one (#1038)

* Adding proxyall

* Adding proxyAll flag

* Reverting extra spaces added

* Make proxyall to true

* Resolving review comments for proxyall

* Resolving codefactor spaces in the code

* Adding proxyall parser in wmserversettingsparser

---------

Co-authored-by: Sameena Syed <sameena.syed@nexigroup.com>
This commit is contained in:
sameena syed
2023-12-11 17:16:30 +01:00
committed by GitHub
parent 0c6129e86b
commit 97d26338e6
7 changed files with 68 additions and 1 deletions

View File

@@ -73,4 +73,9 @@ public class ProxyAndRecordSettingsModel
/// Defines the Replace Settings.
/// </summary>
public ProxyUrlReplaceSettingsModel? ReplaceSettings { get; set; }
/// <summary>
/// Proxy all Api calls, irrespective of any condition
/// </summary>
public bool ProxyAll { get; set; } = false;
}