Using thinktecture JWT authentication resource owner flow,i use the claims part of JWT for client consumption.
My question is that if its possible to add claim in identity s
var tokenDescriptor = new SecurityTokenDescriptor
{
Subject = new ClaimsIdentity(new Claim[]
{ new Claim("listName", list != null ? JsonSerializer.Serialize(user.RoleName) : string.Empty,JsonClaimValueTypes.JsonArray)
}}