mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 09:54:30 +01:00
272cc3d3c9
* Login Code: Turn into Blazor component and extend with data for the app * POS: Add login code for POS frontend * Improve components, fix test
13 lines
200 B
C#
13 lines
200 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace BTCPayServer.Controllers;
|
|
|
|
public partial class UIManageController
|
|
{
|
|
[HttpGet]
|
|
public ActionResult LoginCodes()
|
|
{
|
|
return View();
|
|
}
|
|
}
|