From 63d050244cb17fce448783b8e9e8817b94cab16c Mon Sep 17 00:00:00 2001 From: TekH Date: Tue, 9 Jun 2026 17:05:43 +0200 Subject: [PATCH] Rename method in SignatureController to `Get` Renamed the method `GetAnnotsOfReceiver` to `Get` in the `SignatureController` class. This change simplifies the method name, making it more generic and potentially aligning with naming conventions or broader use cases. --- EnvelopeGenerator.API/Controllers/SignatureController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EnvelopeGenerator.API/Controllers/SignatureController.cs b/EnvelopeGenerator.API/Controllers/SignatureController.cs index ca66b937..fcc11fe8 100644 --- a/EnvelopeGenerator.API/Controllers/SignatureController.cs +++ b/EnvelopeGenerator.API/Controllers/SignatureController.cs @@ -36,7 +36,7 @@ public class SignatureController : ControllerBase /// [Authorize(Policy = AuthPolicy.Receiver)] [HttpGet("{envelopeKey}")] - public async Task GetAnnotsOfReceiver(string envelopeKey, CancellationToken cancel) + public async Task Get(string envelopeKey, CancellationToken cancel) { int envelopeId = User.EnvelopeId();