Gets email sending ensures user is logged in with verifying but is only partially logged in and cannot access the back office, they can only access the verification screen

This commit is contained in:
Shannon
2017-06-14 16:21:56 +02:00
parent cd1e88d151
commit a62426a763
11 changed files with 7156 additions and 290 deletions

View File

@@ -1,13 +1,14 @@
namespace Umbraco.Web.Security
{
internal enum ValidateRequestAttempt
public enum ValidateRequestAttempt
{
Success,
FailedNoPrivileges,
Success = 0,
FailedNoPrivileges = 100,
//FailedTimedOut,
FailedNoContextId,
FailedNoSsl
FailedNoContextId = 101,
FailedNoSsl = 102
}
}