add a UserManager to simplify user creation, improve response validation in ServiceBase, allow Section component to support parameter changes

This commit is contained in:
sbwalker
2023-07-12 16:37:18 -04:00
parent df0f562817
commit c0f4cd2097
7 changed files with 178 additions and 124 deletions

View File

@ -99,5 +99,11 @@ namespace Oqtane.Models
{
get => "Users\\" + UserId.ToString() + "\\";
}
/// <summary>
/// Information if this user's email address is confirmed (set during user creation)
/// </summary>
[NotMapped]
public bool EmailConfirmed { get; set; }
}
}