Adds native ability to be able to fallback to default password checking if specifying a custom IBackOfficeUserPasswordChecker

This commit is contained in:
Shannon
2015-10-26 14:51:19 +01:00
parent 96c087d00f
commit 9b054eaa47
4 changed files with 23 additions and 5 deletions

View File

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