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
commit 3333bfeeff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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