Updating display of generated HTML

This commit is contained in:
rockstardev
2018-08-14 14:57:46 +02:00
parent 57daf27fdd
commit 556b581b6a
3 changed files with 51 additions and 14 deletions

View File

@@ -285,7 +285,10 @@ namespace BTCPayServer.Controllers
[Route("{appId}/paybutton")]
public async Task<IActionResult> PayButton(string appId)
{
var model = new PayButtonViewModel();
var model = new PayButtonViewModel
{
UrlRoot = "http://127.0.0.1:14142"
};
return View(model);
}
}