From b94a620389a44b4b766a1c5d84f1f667f3a3295c Mon Sep 17 00:00:00 2001 From: TekH Date: Tue, 25 Nov 2025 13:44:31 +0100 Subject: [PATCH] Rename Trigger method to Invoke in ActionController The `Trigger` method in the `ActionController` class was renamed to `Invoke`. This change updates the HTTP POST endpoint that accepts a `profileId` as a route parameter. The method's functionality remains unchanged, as it still throws a `NotImplementedException`. --- src/ReC.API/Controllers/ActionController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ReC.API/Controllers/ActionController.cs b/src/ReC.API/Controllers/ActionController.cs index c4b6062..5e03d86 100644 --- a/src/ReC.API/Controllers/ActionController.cs +++ b/src/ReC.API/Controllers/ActionController.cs @@ -7,7 +7,7 @@ namespace ReC.API.Controllers; public class ActionController : ControllerBase { [HttpPost("{profileId}")] - public Task Trigger([FromRoute] int profileId) + public Task Invoke([FromRoute] int profileId) { // Implementation for retrieving actions would go here. throw new NotImplementedException();