Moves what is possible for identity back office to Core, configures backoffice identity with IOptions and our password settings

This commit is contained in:
Shannon
2020-05-20 15:25:42 +10:00
parent 4e62573fce
commit 9818b4a14b
14 changed files with 170 additions and 102 deletions

View File

@@ -0,0 +1,12 @@
namespace Umbraco.Core.BackOffice
{
/// <summary>
/// The result returned from the IBackOfficeUserPasswordChecker
/// </summary>
public enum BackOfficeUserPasswordCheckerResult
{
ValidCredentials,
InvalidCredentials,
FallbackToDefaultChecker
}
}