From f5e6eab14ebee75324e81632c1d0b4eb8701d4f9 Mon Sep 17 00:00:00 2001 From: David Frnoch Date: Tue, 4 Apr 2023 20:32:11 +0200 Subject: [PATCH] docs: update implementation examples links to master branch (#3707) --- .../carts-and-checkout/backend/add-fulfillment-provider.md | 2 +- .../modules/carts-and-checkout/backend/add-payment-provider.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/content/modules/carts-and-checkout/backend/add-fulfillment-provider.md b/docs/content/modules/carts-and-checkout/backend/add-fulfillment-provider.md index 3ba9c30c8b..9775cb4c9a 100644 --- a/docs/content/modules/carts-and-checkout/backend/add-fulfillment-provider.md +++ b/docs/content/modules/carts-and-checkout/backend/add-fulfillment-provider.md @@ -310,4 +310,4 @@ class MyFulfillmentService extends FulfillmentService { ## See Also -- Example Implementations: [Webshipper plugin](https://github.com/medusajs/medusa/tree/cab5821f55cfa448c575a20250c918b7fc6835c9/packages/medusa-fulfillment-webshipper) and the [manual fulfillment plugin](https://github.com/medusajs/medusa/tree/cab5821f55cfa448c575a20250c918b7fc6835c9/packages/medusa-fulfillment-manual) +- Example Implementations: [Webshipper plugin](https://github.com/medusajs/medusa/tree/master/packages/medusa-fulfillment-webshipper) and the [manual fulfillment plugin](https://github.com/medusajs/medusa/tree/master/packages/medusa-fulfillment-manual) diff --git a/docs/content/modules/carts-and-checkout/backend/add-payment-provider.md b/docs/content/modules/carts-and-checkout/backend/add-payment-provider.md index e0db0179a5..bee3a274d2 100644 --- a/docs/content/modules/carts-and-checkout/backend/add-payment-provider.md +++ b/docs/content/modules/carts-and-checkout/backend/add-payment-provider.md @@ -599,5 +599,5 @@ class MyPaymentService extends AbstractPaymentService { ## See Also -- Implementation Examples: [Stripe](https://github.com/medusajs/medusa/tree/2e6622ec5d0ae19d1782e583e099000f0a93b051/packages/medusa-payment-stripe) and [PayPal](https://github.com/medusajs/medusa/tree/2e6622ec5d0ae19d1782e583e099000f0a93b051/packages/medusa-payment-paypal) Payment Processors. +- Implementation Examples: [Stripe](https://github.com/medusajs/medusa/tree/master/packages/medusa-payment-stripe) and [PayPal](https://github.com/medusajs/medusa/tree/master/packages/medusa-payment-paypal) Payment Processors. - [Implement checkout flow on the storefront](../storefront/implement-checkout-flow.mdx).