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.
This commit is contained in:
@@ -14,7 +14,7 @@ namespace DigitalData.MessagingService.API.Controllers;
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
[ApiController]
|
[ApiController]
|
||||||
[Route("api/[controller]")]
|
[Route("api/[controller]")]
|
||||||
public class EmailsController(IMediator mediator) : ControllerBase
|
public class EmailController(IMediator mediator) : ControllerBase
|
||||||
{
|
{
|
||||||
#region Send
|
#region Send
|
||||||
/// <summary>
|
/// <summary>
|
||||||
Reference in New Issue
Block a user