diff --git a/src/ReC.API/Controllers/ActionController.cs b/src/ReC.API/Controllers/ActionController.cs new file mode 100644 index 0000000..c4b6062 --- /dev/null +++ b/src/ReC.API/Controllers/ActionController.cs @@ -0,0 +1,15 @@ +using Microsoft.AspNetCore.Mvc; + +namespace ReC.API.Controllers; + +[Route("api/[controller]")] +[ApiController] +public class ActionController : ControllerBase +{ + [HttpPost("{profileId}")] + public Task Trigger([FromRoute] int profileId) + { + // Implementation for retrieving actions would go here. + throw new NotImplementedException(); + } +} \ No newline at end of file diff --git a/src/ReC.API/ReC.API.csproj b/src/ReC.API/ReC.API.csproj index 0c56541..5419ef0 100644 --- a/src/ReC.API/ReC.API.csproj +++ b/src/ReC.API/ReC.API.csproj @@ -10,8 +10,4 @@ - - - -