From 6fcddfc7b96e643b3731f3fd6fc340f75c7bdfd9 Mon Sep 17 00:00:00 2001 From: Developer 02 Date: Thu, 24 Oct 2024 20:42:37 +0200 Subject: [PATCH] feat(API): ProfileController initialisiert. --- WorkFlow.API/Controllers/ProfileController.cs | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 WorkFlow.API/Controllers/ProfileController.cs diff --git a/WorkFlow.API/Controllers/ProfileController.cs b/WorkFlow.API/Controllers/ProfileController.cs new file mode 100644 index 0000000..a3109c2 --- /dev/null +++ b/WorkFlow.API/Controllers/ProfileController.cs @@ -0,0 +1,16 @@ +using DigitalData.Core.API; +using Microsoft.AspNetCore.Authorization; +using Microsoft.AspNetCore.Mvc; +using WorkFlow.Application.Contracts; +using WorkFlow.Application.DTO.Profile; +using WorkFlow.Domain.Entities; + +namespace WorkFlow.API.Controllers +{ + [Route("api/[controller]")] + [ApiController] + [Authorize] + public class ProfileController(ILogger logger, IProfileService service) : CRUDControllerBase(logger, service) + { + } +} \ No newline at end of file