feat: add Username claim to jwt
This commit is contained in:
parent
f14ece42ff
commit
323cd176b7
@ -14,7 +14,6 @@ var builder = WebApplication.CreateBuilder(args);
|
|||||||
// Add services to the container.
|
// Add services to the container.
|
||||||
|
|
||||||
builder.Services.AddControllers().AddNewtonsoftJson(o => {
|
builder.Services.AddControllers().AddNewtonsoftJson(o => {
|
||||||
o.SerializerSettings.ContractResolver = new DefaultContractResolver();
|
|
||||||
o.SerializerSettings.ReferenceLoopHandling = ReferenceLoopHandling.Ignore;
|
o.SerializerSettings.ReferenceLoopHandling = ReferenceLoopHandling.Ignore;
|
||||||
});
|
});
|
||||||
builder.Services.AddEndpointsApiExplorer();
|
builder.Services.AddEndpointsApiExplorer();
|
||||||
|
@ -63,7 +63,8 @@ public class AuthenticationService
|
|||||||
{
|
{
|
||||||
var subject = new ClaimsIdentity(new[] {
|
var subject = new ClaimsIdentity(new[] {
|
||||||
new Claim("Id", user.Id.ToString()),
|
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;
|
return subject;
|
||||||
|
Loading…
Reference in New Issue
Block a user