Fixes the client cancel

main
Paul Schneider 9 years ago
parent b1d0549686
commit 285f83523b
1 changed files with 7 additions and 3 deletions

@ -61,6 +61,10 @@ namespace Yavsc.Controllers
{
return HttpNotFound();
}
ViewBag.CreatePaymentUrl = Request.ToAbsolute("api/haircut/createpayment/"+id);
ViewBag.ExecutePaymentUrl = Request.ToAbsolute("api/payment/execute");
ViewBag.Urls=Request.GetPaymentUrls("HairCutCommand",id.ToString());
return View (command);
}
public async Task<IActionResult> ClientCancelConfirm(long id)

Loading…