override MapIdentityApi() to fix confirmation link.

This commit is contained in:
2024-08-25 13:38:38 -05:00
parent 484106ca17
commit b474641cd3
5 changed files with 497 additions and 16 deletions

View File

@@ -28,7 +28,7 @@ public class AccountController(
}
result = await UserManager.CreateAsync(newUser2, pass);
if(result != null && !result.Succeeded)
if (result != null && !result.Succeeded)
{
return this.Problem(string.Join(",", result.Errors.Select(e => e.Description)));
}