From 18c5dca9f468928429d3d9f0c0ad832917fd89cc Mon Sep 17 00:00:00 2001 From: TekH Date: Fri, 7 Aug 2026 11:50:48 +0200 Subject: [PATCH] Rename EmailsController to EmailController Updated the class name from EmailsController to EmailController to follow a singular naming convention for controller classes. The namespace and constructor signature remain unchanged. This change improves consistency and readability in the codebase without introducing any functional modifications. --- .../Controllers/{EmailsController.cs => EmailController.cs} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename src/presentation/DigitalData.MessagingService.API/Controllers/{EmailsController.cs => EmailController.cs} (98%) diff --git a/src/presentation/DigitalData.MessagingService.API/Controllers/EmailsController.cs b/src/presentation/DigitalData.MessagingService.API/Controllers/EmailController.cs similarity index 98% rename from src/presentation/DigitalData.MessagingService.API/Controllers/EmailsController.cs rename to src/presentation/DigitalData.MessagingService.API/Controllers/EmailController.cs index af57a8e..d58f52f 100644 --- a/src/presentation/DigitalData.MessagingService.API/Controllers/EmailsController.cs +++ b/src/presentation/DigitalData.MessagingService.API/Controllers/EmailController.cs @@ -14,7 +14,7 @@ namespace DigitalData.MessagingService.API.Controllers; /// [ApiController] [Route("api/[controller]")] -public class EmailsController(IMediator mediator) : ControllerBase +public class EmailController(IMediator mediator) : ControllerBase { #region Send ///