Skip to content

Commit b144d93

Browse files
committed
Fixes - batch 2
1 parent 71f5890 commit b144d93

16 files changed

Lines changed: 61 additions & 110 deletions

File tree

code_samples/recommendations/config/packages/ibexa_connector_raptor.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ ibexa:
33
<scope>:
44
connector_raptor:
55
enabled: true
6-
customer_id: ~ # Required
6+
customer_id: "12345" # Required
77
tracking_type: client # One of: "client" or "server"
88

99
# Raptor Recommendations API key
10-
recommendations_api_key: ~ # Required
10+
recommendations_api_key: "your_api_key_here" # Required
1111

1212
# Raptor Recommendations API URI, optional, set by default
1313
recommendations_api_uri: '%ibexa.connector.raptor.recommendations.api_uri%'

composer.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
"ibexa/page-builder": "5.0.x-dev",
5858
"ibexa/order-management": "5.0.x-dev",
5959
"ibexa/calendar": "5.0.x-dev",
60-
"ibexa/payment": "5.0.x-dev",
60+
"ibexa/payment": "~5.0.x-dev",
6161
"ibexa/shipping": "5.0.x-dev",
6262
"ibexa/fieldtype-matrix": "5.0.x-dev",
6363
"ibexa/storefront": "5.0.x-dev",
@@ -95,7 +95,10 @@
9595
"ibexa/site-context": "~5.0.x-dev",
9696
"ibexa/fieldtype-richtext-rte": "~5.0.x-dev",
9797
"ibexa/site-factory": "~5.0.x-dev",
98-
"ibexa/ckeditor-premium": "~5.0.x-dev"
98+
"ibexa/ckeditor-premium": "~5.0.x-dev",
99+
"ibexa/measurement": "~5.0.x-dev",
100+
"ibexa/connector-actito": "~5.0.x-dev",
101+
"ibexa/fastly": "~5.0.x-dev"
99102
},
100103
"scripts": {
101104
"fix-cs": "php-cs-fixer fix --config=.php-cs-fixer.php -v --show-progress=dots",

docs/administration/back_office/customize_search_suggestion.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,9 @@ ibexa:
1717
system:
1818
<scope>:
1919
search:
20-
min_query_length: 3
21-
result_limit: 5
20+
suggestion:
21+
min_query_length: 3
22+
result_limit: 5
2223
```
2324
2425
## Add custom suggestion source

docs/cdp/cdp_installation.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,14 @@ Symfony Flex installs and activates the package.
2727
After an installation process is finished, go to `config/packages/security.yaml` and uncomment `ibexa_cdp` rule.
2828

2929
```yaml
30-
ibexa_cdp:
31-
pattern: /cdp/webhook
32-
guard:
33-
authenticator: 'Ibexa\Cdp\Security\CdpRequestAuthenticator'
34-
stateless: true
30+
security:
31+
firewalls:
32+
# ...
33+
ibexa_cdp:
34+
request_matcher: Ibexa\Cdp\Security\RequestMatcher
35+
custom_authenticators:
36+
- 'Ibexa\Cdp\Security\CdpRequestAuthenticator'
37+
stateless: true
3538
```
3639
3740
Now, you can configure [[= product_name_cdp =]].

docs/commerce/payment/enable_paypal_payments.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,4 @@ ibexa:
4242
type:
4343
pp_express_checkout:
4444
name: "Translated PayPal Express Checkout name"
45-
4645
```

docs/commerce/payment/enable_stripe_payments.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,5 +43,4 @@ ibexa:
4343
type:
4444
strp_checkout:
4545
name: "Translated Stripe Checkout name"
46-
4746
```

docs/commerce/storefront/configure_storefront.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,10 @@ Settings for a Storefront user are configured under the `ibexa.system.<scope>.st
9494
ibexa:
9595
system:
9696
site_group:
97-
user_settings_groups:
98-
- location
99-
- custom_group
97+
storefront:
98+
user_settings_groups:
99+
- location
100+
- custom_group
100101
```
101102

102103
By default, only the `location` user settings is provided:

docs/content_management/collaborative_editing/configure_collaborative_editing.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -57,14 +57,15 @@ security:
5757
```yaml
5858
security:
5959
# ...
60-
ibexa_shareable_link:
61-
request_matcher: Ibexa\Collaboration\Security\RequestMatcher\ShareableLinkRequestMatcher
62-
pattern: ^/
63-
provider: shared
64-
stateless: true
65-
user_checker: Ibexa\Core\MVC\Symfony\Security\UserChecker
66-
custom_authenticators:
67-
- Ibexa\Collaboration\Security\Authenticator\ShareableLinkAuthenticator
60+
firewalls:
61+
ibexa_shareable_link:
62+
request_matcher: Ibexa\Collaboration\Security\RequestMatcher\ShareableLinkRequestMatcher
63+
pattern: ^/
64+
provider: shared
65+
stateless: true
66+
user_checker: Ibexa\Core\MVC\Symfony\Security\UserChecker
67+
custom_authenticators:
68+
- Ibexa\Collaboration\Security\Authenticator\ShareableLinkAuthenticator
6869
```
6970

7071
### Configuration

docs/content_management/field_types/form_and_template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ If you don't use the design engine, apply the following configuration:
190190

191191
``` yaml
192192
ibexa:
193-
systems:
193+
system:
194194
admin_group:
195195
field_templates:
196196
- { template: 'adminui/field/custom_field_view.html.twig', priority: 10 }

docs/content_management/taxonomy/taxonomy.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -191,10 +191,9 @@ By default, the system returns three suggestions.
191191
You can change the default number if needed by altering the following setting:
192192

193193
``` yaml hl_lines="4"
194-
ibexa:
195-
taxonomy:
194+
ibexa_taxonomy:
196195
text_to_taxonomy:
197-
default_suggested_taxonomies_limit: 5
196+
default_suggested_taxonomies_limit: 5
198197
```
199198

200199
You can also override this setting per AI action by editing its configuration.

0 commit comments

Comments
 (0)