Rename SignatureController to DocReceiverElementController

The class `SignatureController` has been renamed to `DocReceiverElementController` to better reflect its purpose. The constructor and its XML documentation have been updated accordingly. The `[Authorize]`, `[ApiController]`, and `[Route]` attributes remain unchanged. A `TODO` comment has been added to indicate future updates for using a signature query.
This commit is contained in:
2026-06-17 16:09:26 +02:00
parent f2356b3ce4
commit ca4ec7cb6f

View File

@@ -15,14 +15,14 @@ namespace EnvelopeGenerator.API.Controllers;
[Authorize(Policy = AuthPolicy.Receiver)]
[ApiController]
[Route("api/[controller]")]
public class SignatureController : ControllerBase
public class DocReceiverElementController : ControllerBase
{
private readonly IMediator _mediator;
/// <summary>
/// Initializes a new instance of <see cref="SignatureController"/>.
/// Initializes a new instance of <see cref="DocReceiverElementController"/>.
/// </summary>
public SignatureController(IMediator mediator)
public DocReceiverElementController(IMediator mediator)
{
_mediator = mediator;
}