feat: add Username claim to jwt

This commit is contained in:
cuqmbr 2022-07-27 20:08:38 +03:00
parent f14ece42ff
commit 323cd176b7
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,6 @@ var builder = WebApplication.CreateBuilder(args);
// Add services to the container.
builder.Services.AddControllers().AddNewtonsoftJson(o => {
o.SerializerSettings.ContractResolver = new DefaultContractResolver();
o.SerializerSettings.ReferenceLoopHandling = ReferenceLoopHandling.Ignore;
});
builder.Services.AddEndpointsApiExplorer();

View File

@ -63,7 +63,8 @@ public class AuthenticationService
{
var subject = new ClaimsIdentity(new[] {
new Claim("Id", user.Id.ToString()),
new Claim(ClaimTypes.Role, user.Role),
new Claim("Username", user.Username),
new Claim(ClaimTypes.Role, user.Role)
});
return subject;