Files
Umbraco-CMS/src/Umbraco.Web.BackOffice/Security/NoopBackOfficeTwoFactorOptions.cs
Nikolaj Geisle e762fa91bc V10: fix build warnings in Web.BackOffice (#12479)
* Run code cleanup

* Start manual run

* Finish dotnet format + manual cleanup

* Fix up after merge

* Fix substrings changed to [..]

Co-authored-by: Nikolaj Geisle <niko737@edu.ucl.dk>
Co-authored-by: Zeegaan <nge@umbraco.dk>
2022-06-20 08:37:17 +02:00

8 lines
219 B
C#

namespace Umbraco.Cms.Web.BackOffice.Security;
[Obsolete("Not used anymore")]
public class NoopBackOfficeTwoFactorOptions : IBackOfficeTwoFactorOptions
{
public string? GetTwoFactorView(string username) => null;
}