Hi @joshbooker,
You can get the current user server-side like this:
var user = this.HttpContext.User.FindFirst(System.Security.Claims.ClaimTypes.Name).Value;
Best Regards,
Vladimir
Hi @joshbooker,
You can get the current user server-side like this:
var user = this.HttpContext.User.FindFirst(System.Security.Claims.ClaimTypes.Name).Value;
Best Regards,
Vladimir