Adds user Alias. Make StoredDataUrls optionals.

This commit is contained in:
Jonathan Bourdon
2024-07-22 00:42:27 -04:00
parent 8551398edc
commit 0faf5a9a0e
31 changed files with 1720 additions and 174 deletions

View File

@@ -65,7 +65,12 @@ public partial class Testing
var userManager = scope.ServiceProvider.GetRequiredService<ApplicationUserManager>();
var user = new ApplicationUser { UserName = userName, Email = userName };
var user = new ApplicationUser {
UserName = userName,
Email = userName,
FirstName = "FirstName",
LastName = "LastName"
};
var result = await userManager.CreateAsync(user, password);