Files
Umbraco-CMS/src/Umbraco.Web/Security/IUmbracoBackOfficeTwoFactorOptions.cs
2018-11-22 14:05:51 +00:00

13 lines
405 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, UmbracoContext umbracoContext, string username);
}
}