@spree/docs 0.1.78 → 0.1.80
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.
- package/dist/api-reference/admin-api/authentication.md +2 -2
- package/dist/api-reference/admin-api/errors.md +2 -2
- package/dist/api-reference/admin-api/introduction.md +2 -1
- package/dist/api-reference/admin-api/querying.md +2 -2
- package/dist/api-reference/store.yaml +6091 -6091
- package/dist/developer/how-to/custom-order-routing.md +1 -1
- package/package.json +1 -1
|
@@ -242,7 +242,7 @@ store.channels.find_by(code: 'pos').update!(
|
|
|
242
242
|
)
|
|
243
243
|
```
|
|
244
244
|
|
|
245
|
-
Resolution order: `channel.preferred_order_routing_strategy` → `store.preferred_order_routing_strategy
|
|
245
|
+
Resolution order: `channel.preferred_order_routing_strategy` → `store.preferred_order_routing_strategy` → the default `Strategy::Rules`. Only a value that points to a real `Strategy::Base` subclass is used; anything unset or invalid is skipped, so a misconfigured strategy falls back to the default instead of breaking checkout.
|
|
246
246
|
|
|
247
247
|
### Step 3: Test the Strategy
|
|
248
248
|
|