From a854720c75a9a260121866e311d9951460d51d36 Mon Sep 17 00:00:00 2001 From: Developer 02 Date: Wed, 26 Nov 2025 17:29:58 +0100 Subject: [PATCH] Add DELETE request handling in command handler Implemented the handling of DELETE HTTP requests in the InvokeRecActionCommandHandler class. Previously, the DELETE case was unhandled, and now it uses http.DeleteAsync to send a DELETE request to the specified action.EndpointUri, supporting cancellation with the cancel token. --- .../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 bb7ccef..a7faa2c 100644 --- a/src/ReC.Application/RecActions/Commands/InvokeRecActionCommand.cs +++ b/src/ReC.Application/RecActions/Commands/InvokeRecActionCommand.cs @@ -44,7 +44,7 @@ public class InvokeRecActionCommandHandler(ISender sender) : IRequestHandler