spree-paypal_platform 5.1.2 → 5.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3b451e198e6215856080bd410bfdcec699ad02835c638a02d7a33ee933f21f27
|
|
4
|
+
data.tar.gz: 183989e5effcb3cc16461b8f7e0401a284d630d546e6304aa8d65730f3bce7be
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6a6c113d998c9538d07ebd9a6b483a37f1c26fa3502257dfa2855c94990ab307d8889a32f132cea4e29a0064812b9cbff221ae665ae0c06c9f101454cb5605b0
|
|
7
|
+
data.tar.gz: 2dd052e117e6aff4facf62c72f63a0f00bedb7f0b7a466db880d49b48efba99bc058d9c3f1022a4cdbd71f552d73117edb0dd4ef7bfe9e1a14a53361d1ff6759
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -49,7 +49,6 @@ Then add a **PayPal** payment method in admin and set:
|
|
|
49
49
|
| `webhook_secret` | PayPal webhook ID (used as the verify-webhook `webhook_id`) |
|
|
50
50
|
| `test_mode` | Sandbox vs live |
|
|
51
51
|
| `enable_apple_pay` | Advertise Apple Pay to headless storefronts (default on) |
|
|
52
|
-
| `apple_pay_domain` | Domain registered with PayPal for Apple Pay |
|
|
53
52
|
|
|
54
53
|
Webhook URL is the standard Spree v3 payments webhook:
|
|
55
54
|
|
|
@@ -23,7 +23,6 @@ module Spree
|
|
|
23
23
|
preference :webhook_secret, :string
|
|
24
24
|
preference :test_mode, :boolean, default: true
|
|
25
25
|
preference :enable_apple_pay, :boolean, default: true
|
|
26
|
-
preference :apple_pay_domain, :string
|
|
27
26
|
|
|
28
27
|
validates :preferred_client_id, :preferred_client_secret, presence: true
|
|
29
28
|
|
data/app/views/spree/admin/payment_methods/configuration_guides/_spree_paypal_platform.html.erb
CHANGED
|
@@ -11,6 +11,6 @@
|
|
|
11
11
|
<strong>Apple Pay</strong> is a funding source of this same PayPal method, not a second payment method.
|
|
12
12
|
Register every storefront domain that will show the Apple Pay button in the
|
|
13
13
|
<%= external_link_to 'PayPal Apple Pay domain registration', 'https://developer.paypal.com/docs/checkout/apm/apple-pay/', class: 'alert-link' %>
|
|
14
|
-
dashboard
|
|
14
|
+
dashboard. The button only renders in Safari over HTTPS.
|
|
15
15
|
</p>
|
|
16
16
|
</div>
|