From e781e6e37bd25fa0ad86bc9a62de693b29166f07 Mon Sep 17 00:00:00 2001 From: John Miller Date: Thu, 29 Aug 2024 19:27:30 +0100 Subject: [PATCH] Test --- Microservice.Customer.Api/Helpers/CustomerHttpAccessor.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Microservice.Customer.Api/Helpers/CustomerHttpAccessor.cs b/Microservice.Customer.Api/Helpers/CustomerHttpAccessor.cs index 92e3472..73502f3 100644 --- a/Microservice.Customer.Api/Helpers/CustomerHttpAccessor.cs +++ b/Microservice.Customer.Api/Helpers/CustomerHttpAccessor.cs @@ -13,7 +13,7 @@ public Guid CustomerId var customerId = accessor.HttpContext.User.FindFirstValue(ClaimTypes.NameIdentifier); - return customerId == null ? throw new ArgumentNullException("NameIdentifier not found with customer Id") : new(customerId); + return customerId == null ? throw new ArgumentNullException("NameIdentifier not found with customer Id.") : new(customerId); } } } \ No newline at end of file