Adds edition of user profile

This commit is contained in:
2024-09-03 20:59:43 -04:00
parent 012ad7fcf4
commit f12418bc79
28 changed files with 1398 additions and 182 deletions

View File

@@ -113,7 +113,7 @@ internal class TestDataSeeder(
SubjectId = content.Id,
CreatedAt = currentDate,
CreatedBy = author.Id,
CreatedByName = author.Alias ?? $"{author.FirstName} {author.LastName}",
CreatedByName = author.Alias ?? $"{author.Firstname} {author.Lastname}",
CreatedByPortraitUrl = author.PortraitUrl,
Value = $"Message #{m} on {content.Title}"
};
@@ -143,7 +143,7 @@ internal class TestDataSeeder(
SubjectId = content.Id,
ParentId = parent.Id,
CreatedBy = author.Id,
CreatedByName = author.Alias ?? $"{author.FirstName} {author.LastName}",
CreatedByName = author.Alias ?? $"{author.Firstname} {author.Lastname}",
CreatedByPortraitUrl = author.PortraitUrl,
CreatedAt = currentDate,
Value = $"Reply {r} to {parent.Value} on {content.Title}"
@@ -165,8 +165,8 @@ internal class TestDataSeeder(
Email = $"{name}@test",
EmailConfirmed = true,
Alias = name,
FirstName = $"FirstName of {name}",
LastName = $"LastName of {name}",
Firstname = $"FirstName of {name}",
Lastname = $"LastName of {name}",
PortraitUrl = portraitUrl
};