cleanup: remove CallbackUrl from package purchase requests — CMS reads from config now
Build and Deploy to Kubernetes / build-and-deploy (push) Failing after 3m7s

This commit is contained in:
masoodafar-web
2026-02-27 22:21:02 +03:30
parent 2f9ef15859
commit 2b1dc47dc7
2 changed files with 0 additions and 6 deletions
@@ -183,12 +183,9 @@ public partial class Checkout
try
{
var callbackUrl = $"{Navigation.BaseUri}profile/payment-callback";
var response = await PackageClient.CustomerPurchasePackageAsync(new CustomerPurchasePackageRequest
{
PackageId = _selectedPackage.Id,
CallbackUrl = callbackUrl,
PurchaseMethod = PurchaseMethodEnum.PurchaseMethodGateway
});
@@ -437,12 +437,9 @@ public partial class Index
try
{
var callbackUrl = $"{Navigation.BaseUri}profile/payment-callback";
var response = await PackageContract.CustomerPurchasePackageAsync(new CustomerPurchasePackageRequest
{
PackageId = packageId,
CallbackUrl = callbackUrl,
PurchaseMethod = PurchaseMethodEnum.PurchaseMethodGateway
});