Applications.razor for applicants

This commit is contained in:
2024-09-06 21:37:16 +03:00
parent 53d5758527
commit f90a0e7e82
13 changed files with 227 additions and 125 deletions

View File

@@ -29,6 +29,6 @@ public class TokenGenerator(TokenGeneratorOptions options, JwtSecurityTokenHandl
signingCredentials: options.Credentials,
claims: claims);
return new AuthToken(tokenHandler.WriteToken(token));
return new AuthToken { Token = tokenHandler.WriteToken(token) };
}
}