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

@@ -1,4 +1,5 @@
using EnvelopeGenerator.Application.Envelopes.Commands;
using EnvelopeGenerator.API.Extensions;
using EnvelopeGenerator.Application.Envelopes.Commands;
using EnvelopeGenerator.Application.Envelopes.Queries;
using MediatR;
using Microsoft.AspNetCore.Authorization;