Move ClaimsPrincipal extensions to API.Extensions namespace

Refactored ControllerExtensions: moved user claim extraction
methods from EnvelopeGenerator.API.Controllers to the new
EnvelopeGenerator.API.Extensions namespace. Updated all
references and using statements accordingly. No logic changes;
improves code organization and clarity.
This commit is contained in:
2026-02-02 15:07:27 +01:00
parent 4759b16a85
commit d7644bfe07
3 changed files with 4 additions and 2 deletions

View File

@@ -13,6 +13,7 @@ using System.Data;
using EnvelopeGenerator.Application.Common.SQL;
using EnvelopeGenerator.Application.Common.Dto.Receiver;
using EnvelopeGenerator.Application.Common.Interfaces.SQLExecutor;
using EnvelopeGenerator.API.Extensions;
namespace EnvelopeGenerator.API.Controllers;