btcpayserver/BTCPayServer/Controllers/UIManageController.LoginCodes.cs
d11n 272cc3d3c9
POS: Option for user sign in via the QR code (#6231)
* Login Code: Turn into Blazor component and extend with data for the app

* POS: Add login code for POS frontend

* Improve components, fix test
2024-09-26 19:10:14 +09:00

13 lines
200 B
C#

using Microsoft.AspNetCore.Mvc;
namespace BTCPayServer.Controllers;
public partial class UIManageController
{
[HttpGet]
public ActionResult LoginCodes()
{
return View();
}
}