From a57f53b6a1480f83153fe62902830a229f36d94e Mon Sep 17 00:00:00 2001 From: Developer 02 Date: Wed, 26 Nov 2025 17:29:06 +0100 Subject: [PATCH] Add POST request handling in InvokeRecActionCommandHandler Previously, the handling of HTTP POST requests in the InvokeRecActionCommandHandler class was not implemented. This commit adds the necessary code to handle POST requests by using the http.PostAsync method. The POST request is sent to the specified action.EndpointUri with null content and a cancellation token. This change ensures that POST operations are now properly executed within the command handler. --- .../RecActions/Commands/InvokeRecActionCommand.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ReC.Application/RecActions/Commands/InvokeRecActionCommand.cs b/src/ReC.Application/RecActions/Commands/InvokeRecActionCommand.cs index b80d43d..8da5ca9 100644 --- a/src/ReC.Application/RecActions/Commands/InvokeRecActionCommand.cs +++ b/src/ReC.Application/RecActions/Commands/InvokeRecActionCommand.cs @@ -34,7 +34,7 @@ public class InvokeRecActionCommandHandler(ISender sender) : IRequestHandler