From 23246d4ebfeaa9d46d6ec16c1eb7c3b5d6ddcfed Mon Sep 17 00:00:00 2001 From: TekH Date: Mon, 2 Mar 2026 10:44:04 +0100 Subject: [PATCH] Remove Invoked filter from ReadRecActionViewQuery Previously, only uninvoked actions were fetched by applying Invoked = false in ReadRecActionViewQuery. Now, the filter is removed to retrieve all actions for the given ProfileId, regardless of their Invoked status. --- .../RecActions/Commands/InvokeBatchRecActionViewsCommand.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ReC.Application/RecActions/Commands/InvokeBatchRecActionViewsCommand.cs b/src/ReC.Application/RecActions/Commands/InvokeBatchRecActionViewsCommand.cs index d04193c..5fea716 100644 --- a/src/ReC.Application/RecActions/Commands/InvokeBatchRecActionViewsCommand.cs +++ b/src/ReC.Application/RecActions/Commands/InvokeBatchRecActionViewsCommand.cs @@ -19,7 +19,7 @@ public class InvokeRecActionViewsCommandHandler(ISender sender) : IRequestHandle { public async Task Handle(InvokeBatchRecActionViewsCommand request, CancellationToken cancel) { - var actions = await sender.Send(new ReadRecActionViewQuery() { ProfileId = request.ProfileId, Invoked = false }, cancel); + var actions = await sender.Send(new ReadRecActionViewQuery() { ProfileId = request.ProfileId }, cancel); foreach (var action in actions) {