fix typo in PaymentSucceded option

This commit is contained in:
jabarca 2019-09-14 10:31:52 -05:00
parent 1403387a12
commit 403b731d12
3 changed files with 3 additions and 3 deletions

View File

@ -41,7 +41,7 @@
// Instead of a real payment we just take the env. var to simulate the payment // Instead of a real payment we just take the env. var to simulate the payment
// The payment can be successful or it can fail // The payment can be successful or it can fail
if (_settings.PaymentSucceded) if (_settings.PaymentSucceeded)
{ {
orderPaymentIntegrationEvent = new OrderPaymentSucceededIntegrationEvent(@event.OrderId); orderPaymentIntegrationEvent = new OrderPaymentSucceededIntegrationEvent(@event.OrderId);
} }

View File

@ -2,7 +2,7 @@
{ {
public class PaymentSettings public class PaymentSettings
{ {
public bool PaymentSucceded { get; set; } public bool PaymentSucceeded { get; set; }
public string EventBusConnection { get; set; } public string EventBusConnection { get; set; }
} }
} }

View File

@ -11,7 +11,7 @@
} }
} }
}, },
"PaymentSucceded": true, "PaymentSucceeded": true,
"AzureServiceBusEnabled": false, "AzureServiceBusEnabled": false,
"SubscriptionClientName": "Payment", "SubscriptionClientName": "Payment",
"ApplicationInsights": { "ApplicationInsights": {