Files
Umbraco-CMS/src/Umbraco.Web/Security/IUmbracoBackOfficeTwoFactorOptions.cs
2020-02-09 19:05:39 +01:00

13 lines
406 B
C#

using Microsoft.Owin;
namespace Umbraco.Web.Security
{
/// <summary>
/// Used to display a custom view in the back office if developers choose to implement their own custom 2 factor authentication
/// </summary>
public interface IUmbracoBackOfficeTwoFactorOptions
{
string GetTwoFactorView(IOwinContext owinContext, IUmbracoContext umbracoContext, string username);
}
}