Merge pull request #2033 from sbwalker/dev

Adding 2 factor authentication
This commit is contained in:
Shaun Walker
2022-02-28 15:48:02 -05:00
committed by GitHub

View File

@ -97,5 +97,11 @@ namespace Oqtane.Models
{ {
get => "Users\\" + UserId.ToString() + "\\"; get => "Users\\" + UserId.ToString() + "\\";
} }
/// <summary>
/// Indicates if the user requires 2 factor authentication to sign in
/// </summary>
[NotMapped]
public bool TwoFactorEnabled { get; set; }
} }
} }