AB¤6233 - Reverted changes to typefinder and implemented check for if SqlCE is available in the install process

This commit is contained in:
Bjarke Berg
2020-05-06 20:37:03 +02:00
parent 13197eb5ff
commit 269c75e26b
37 changed files with 625 additions and 692 deletions

View File

@@ -108,7 +108,8 @@ namespace Umbraco.Web.Install.InstallSteps
return new
{
minCharLength = _passwordConfiguration.RequiredLength,
minNonAlphaNumericLength = _passwordConfiguration.RequireNonLetterOrDigit ? 1 : 0
minNonAlphaNumericLength = _passwordConfiguration.RequireNonLetterOrDigit ? 1 : 0,
quickInstallAvailable = DatabaseConfigureStep.IsSqlCeAvailable()
};
}
}