Migrates AuthenticationController for the 2FA requirements
This commit is contained in:
@@ -18,5 +18,17 @@ namespace Umbraco.Web.Models
|
||||
[Required]
|
||||
[DataMember(Name = "provider", IsRequired = true)]
|
||||
public string Provider { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Flag indicating whether the sign-in cookie should persist after the browser is closed.
|
||||
/// </summary>
|
||||
[DataMember(Name = "isPersistent", IsRequired = true)]
|
||||
public bool IsPersistent { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Flag indicating whether the current browser should be remember, suppressing all further two factor authentication prompts.
|
||||
/// </summary>
|
||||
[DataMember(Name = "rememberClient", IsRequired = true)]
|
||||
public bool RememberClient { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user