Skip to content

Commit

Permalink
[AD-234] Fix for payment methods that don't work
Browse files Browse the repository at this point in the history
  • Loading branch information
kpieloch committed May 9, 2024
1 parent d719be9 commit c8a5336
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public interface AdyenControllerConstants
String SUMMARY_CHECKOUT_PREFIX = "/checkout/multi/adyen/summary";
String COMPONENT_PREFIX = "/adyen/component";
String AMAZON_RETURN_URL = "/checkout/multi/adyen/summary/amazonpay/placeorder";

String CHECKOUT_RESULT_URL = "/checkout-adyen-response";
/**
* Class with view name constants
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,13 @@
import java.util.List;
import java.util.Objects;

import static com.adyen.v6.constants.AdyenControllerConstants.CHECKOUT_RESULT_URL;
import static com.adyen.v6.constants.AdyenControllerConstants.COMPONENT_PREFIX;
import static com.adyen.v6.constants.AdyenControllerConstants.SUMMARY_CHECKOUT_PREFIX;
import static com.adyen.v6.constants.Adyenv6coreConstants.PAYMENT_METHOD_AMAZONPAY;
import static com.adyen.v6.constants.Adyenv6coreConstants.PAYMENT_METHOD_BCMC_MOBILE;
import static com.adyen.v6.constants.Adyenv6coreConstants.PAYMENT_METHOD_PIX;
import static com.adyen.v6.controllers.pages.AdyenSummaryCheckoutStepController.CHECKOUT_RESULT_URL;


@RestController
@RequestMapping(COMPONENT_PREFIX)
Expand Down

0 comments on commit c8a5336

Please sign in to comment.