Fixes the user password validation to ensure it obeys what the membership provider's are configured for.

This commit is contained in:
Shannon
2014-03-06 12:11:14 +11:00
parent 7676099f2e
commit 37937e2c8e
4 changed files with 43 additions and 4 deletions

View File

@@ -57,6 +57,12 @@ namespace Umbraco.Web.Install.Models
[DataMember(Name = "view")]
public virtual string View { get; private set; }
/// <summary>
/// The view model used to render the view, by default is null but can be populated
/// </summary>
[DataMember(Name = "model")]
public virtual object ViewModel { get; private set; }
[DataMember(Name = "description")]
public string Description { get; private set; }