diff --git a/src/ReC.API/Controllers/RecActionController.cs b/src/ReC.API/Controllers/RecActionController.cs index 402867f..f47f7be 100644 --- a/src/ReC.API/Controllers/RecActionController.cs +++ b/src/ReC.API/Controllers/RecActionController.cs @@ -71,5 +71,16 @@ public class RecActionController(IMediator mediator) : ControllerBase return NoContent(); } + + [HttpDelete("fake")] + public async Task Delete(CancellationToken cancel) + { + await mediator.Send(new DeleteRecActionsCommand() + { + ProfileId = 2 + }, cancel); + + return NoContent(); + } #endregion CRUD } \ No newline at end of file