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:
@@ -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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user