From 475acc0a563adf4d6cada87097910669ff57f410 Mon Sep 17 00:00:00 2001 From: Developer 02 Date: Fri, 5 Dec 2025 23:29:43 +0100 Subject: [PATCH] Remove InvokeRecActionFakeAsync method Removed the `InvokeRecActionFakeAsync` method, which was used to invoke a fake RecAction via the `api/RecAction/invoke/fake` endpoint. This method is no longer needed or relevant. The `InvokeRecActionAsync` method remains in place to handle RecActions for specific profile IDs via the `api/RecAction/invoke/{profileId}` endpoint. --- src/ReC.Client/ReCClient.cs | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/ReC.Client/ReCClient.cs b/src/ReC.Client/ReCClient.cs index adcbf09..d11280f 100644 --- a/src/ReC.Client/ReCClient.cs +++ b/src/ReC.Client/ReCClient.cs @@ -30,16 +30,5 @@ namespace ReC.Client var resp = await _http.PostAsync($"api/RecAction/invoke/{profileId}", content: null, ct); resp.EnsureSuccessStatusCode(); } - - /// - /// POST api/RecAction/invoke/fake - /// - /// - /// - public async Task InvokeRecActionFakeAsync(CancellationToken ct = default) - { - var resp = await _http.PostAsync($"api/RecAction/invoke/fake", content: null, ct); - resp.EnsureSuccessStatusCode(); - } } } \ No newline at end of file