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.
This commit is contained in:
tekh 2025-12-03 13:46:10 +01:00
parent 6eebd10dc1
commit dd33d74863

View File

@ -55,7 +55,7 @@ public class RecActionController(IMediator mediator) : ControllerBase
BodyQuery = $@"SELECT '{bodyJson ?? "NULL"}' AS REQUEST_BODY;", BodyQuery = $@"SELECT '{bodyJson ?? "NULL"}' AS REQUEST_BODY;",
HeaderQuery = headerJson is not null ? $@"SELECT '{headerJson}' AS REQUEST_HEADER;" : null, HeaderQuery = headerJson is not null ? $@"SELECT '{headerJson}' AS REQUEST_HEADER;" : null,
Active = true, Active = true,
EndpointAuthId = 1 EndpointAuthId = 4
}, cancel); }, cancel);
return CreatedAtAction(nameof(CreateFakeAction), null); return CreatedAtAction(nameof(CreateFakeAction), null);