You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Upgrade to commerce v14
* Remove redundant client build process
* Remove redundant build process
* Migrate from context.Request to context.HttpContext.Request
* Delete src/Umbraco.Commerce.PaymentProviders.Buckaroo/umbraco-package-schema.json
* Clean up translation keys; upgrade to commerce 14-alpha3
* update commerce version
* update packages.lock.json
* Create an error order when the payment is rejected from buckaroo side.
* Remove packages.lock.json
* update localization file
[PaymentProviderSetting(Name="Continue URL",Description="The URL to continue to after this provider has done processing. eg: /continue/",SortOrder=100)]
7
+
[PaymentProviderSetting]
8
8
publicstringContinueUrl{get;set;}=string.Empty;
9
9
10
-
[PaymentProviderSetting(Name="Cancel URL",Description="The URL to return to if the payment attempt is canceled. eg: /cart/",SortOrder=200)]
10
+
[PaymentProviderSetting]
11
11
publicstringCancelUrl{get;set;}=string.Empty;
12
12
13
-
[PaymentProviderSetting(Name="Error URL",Description="The URL to return to if the payment attempt errors. eg: /error/",SortOrder=300)]
13
+
[PaymentProviderSetting]
14
14
publicstringErrorUrl{get;set;}=string.Empty;
15
15
16
-
[PaymentProviderSetting(Name="Website key",Description="The website key, which can be found here: https://plaza.buckaroo.nl/Configuration/WebSite/Index/",SortOrder=400)]
16
+
[PaymentProviderSetting]
17
17
publicstringWebsiteKey{get;set;}=string.Empty;
18
18
19
19
/// <summary>
20
20
/// Gets or sets secret key.
21
21
/// </summary>
22
-
[PaymentProviderSetting(Name="Secret key",Description="The secret key, which can be found here: https://plaza.buckaroo.nl/Configuration/Merchant/SecretKey",SortOrder=500)]
22
+
[PaymentProviderSetting]
23
23
publicstringApiKey{get;set;}=string.Empty;
24
24
25
-
[PaymentProviderSetting(Name="Webhook hostname overwrite",Description="If you rewrite incoming host headers to a different value, set this to the hostname where the buyer does the checkout action. Enter hostname only eg: 'umbraco.com'",SortOrder=600)]
Copy file name to clipboardExpand all lines: src/Umbraco.Commerce.PaymentProviders.Buckaroo/Webhooks/Exceptions/BuckarooWebhookInvalidAuthorizationHeaderException.cs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ public class BuckarooWebhookInvalidAuthorizationHeaderException : Exception
'buckarooOnetimePaymentSettingsWebsiteKeyDescription': 'The website key, which can be found here: https://plaza.buckaroo.nl/Configuration/WebSite/Index/',
'buckarooOnetimePaymentSettingsApiKeyDescription': 'The secret key, which can be found here: https://plaza.buckaroo.nl/Configuration/Merchant/SecretKey',
'buckarooOnetimePaymentSettingsWebhookHostnameOverwriteDescription': 'If you rewrite incoming host headers to a different value, set this to the hostname where the buyer does the checkout action. Enter hostname only eg: \'umbraco.com\'',
17
+
'buckarooOnetimePaymentSettingsIsTestModeLabel': 'Enable test mode',
18
+
'buckarooOnetimePaymentSettingsIsTestModeDescription': 'Set whether to process payments in test mode',
0 commit comments