From dd33d7486391fd8f710b52106ee2f4fdaf11d5ce Mon Sep 17 00:00:00 2001 From: TekH Date: Wed, 3 Dec 2025 13:46:10 +0100 Subject: [PATCH] Update EndpointAuthId in RecActionController to 4 The `EndpointAuthId` property in the object initialization within the `RecActionController` class was updated from `1` to `4`. This change likely reflects an update to the authentication configuration or a shift to a different endpoint authorization identifier. --- src/ReC.API/Controllers/RecActionController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ReC.API/Controllers/RecActionController.cs b/src/ReC.API/Controllers/RecActionController.cs index f47f7be..8b67ef2 100644 --- a/src/ReC.API/Controllers/RecActionController.cs +++ b/src/ReC.API/Controllers/RecActionController.cs @@ -55,7 +55,7 @@ public class RecActionController(IMediator mediator) : ControllerBase BodyQuery = $@"SELECT '{bodyJson ?? "NULL"}' AS REQUEST_BODY;", HeaderQuery = headerJson is not null ? $@"SELECT '{headerJson}' AS REQUEST_HEADER;" : null, Active = true, - EndpointAuthId = 1 + EndpointAuthId = 4 }, cancel); return CreatedAtAction(nameof(CreateFakeAction), null);