diff --git a/src/ReC.API/Controllers/RecActionController.cs b/src/ReC.API/Controllers/RecActionController.cs index a1f3795..eb2c58f 100644 --- a/src/ReC.API/Controllers/RecActionController.cs +++ b/src/ReC.API/Controllers/RecActionController.cs @@ -51,4 +51,15 @@ public class RecActionController(IMediator mediator) : ControllerBase return CreatedAtAction(nameof(CreateFakeAction), null); } + + [HttpDelete] + public async Task GetActions([FromQuery] int profileId) + { + await mediator.Send(new DeleteRecActionsCommand() + { + ProfileId = profileId + }); + + return NoContent(); + } } \ No newline at end of file