Skip to content

Commit 71f5890

Browse files
committed
Fixes - first batch
1 parent 686c428 commit 71f5890

24 files changed

Lines changed: 95 additions & 203 deletions

File tree

code_samples/back_office/components/twig_components.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ ibexa_twig_components:
1212
priority: 0
1313
arguments:
1414
content: '<b>Hello world!</b>'
15-
admin-ui-user-menu:
1615
duplicated_user_menu:
1716
type: menu
1817
arguments:

code_samples/back_office/online_editor/config/packages/custom_plugin.yaml

Lines changed: 0 additions & 13 deletions
This file was deleted.

code_samples/front/shop/order-management/config/packages/ibexa.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ framework:
6565
to:
6666
- dropped
6767

68-
// ...
68+
# ...
6969

7070
ibexa:
7171
repositories:

code_samples/front/shop/payment/src/bundle/Resources/config/services/payment_method.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ services:
88
$domain: <translation_domain>
99
tags:
1010
- { name: ibexa.payment.payment_method.type, alias: new_payment_method_type }
11-
services:
11+
1212
App\Payment\PaymentMethod\Voter\NewPaymentMethodTypeVoter:
1313
tags:
14-
- { name: ibexa.payment.payment_method.voter, type: new_payment_method_type }
14+
- { name: ibexa.payment.payment_method.voter, type: new_payment_method_type }

code_samples/recommendations/config/packages/ibexa_connector_raptor.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ ibexa:
99
# Raptor Recommendations API key
1010
recommendations_api_key: ~ # Required
1111

12-
# Raptor Recommendations API URL, optional, set by default
13-
recommendations_api_url: '%ibexa.connector.raptor.recommendations.api_url%'
12+
# Raptor Recommendations API URI, optional, set by default
13+
recommendations_api_uri: '%ibexa.connector.raptor.recommendations.api_uri%'
1414
ibexa_connector_raptor:
1515
# When enabled, tracking exceptions are thrown instead of being silently handled
1616
strict_exceptions: true

docs/administration/configuration/dynamic_configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ parameters:
1818
# Internal configuration
1919
ibexa.site_access.config.default.content.default_ttl: 60
2020
ibexa.site_access.config.site_group.content.default_ttl: 3600
21-
 
21+
2222
# Here "myapp" is the namespace, followed by the SiteAccess name as the parameter scope
2323
# Parameter "my_param" will have a different value in site_group and admin_group
2424
myapp.site_group.my_param: value

docs/api/graphql/graphql_customization.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,9 @@ Mutation:
6868
createSomething:
6969
builder: Mutation
7070
builderConfig:
71-
inputType: CreateSomethingInput
72-
payloadType: SomethingPayload
73-
mutateAndGetPayload: '@=mutation('CreateSomething', [value])'
71+
inputType: CreateSomethingInput
72+
payloadType: SomethingPayload
73+
mutateAndGetPayload: "@=mutation('CreateSomething', [value])"
7474
7575
CreateSomethingInput:
7676
type: relay-mutation-input

docs/api/rest_api/rest_api_authentication.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -325,10 +325,15 @@ For more information, see [HTTP Authentication: Basic and Digest Access Authenti
325325
If the installation has a dedicated host for REST, you can enable HTTP basic authentication only on this host by setting a firewall like in the following example before the `ibexa_front` one:
326326

327327
```yaml
328+
security:
329+
firewalls:
330+
# ...
328331
ibexa_rest:
329332
host: ^api\.example\.com$
330333
http_basic:
331334
realm: Ibexa DXP REST API
335+
#ibexa_front
336+
# ...
332337
```
333338

334339
!!! caution "Back office uses REST API"

docs/commerce/checkout/reorder.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,11 @@ framework:
5454
places:
5555
!php/const Ibexa\OrderManagement\Value\Status::COMPLETED_PLACE:
5656
metadata:
57-
...
57+
# ...
5858
can_be_reordered: true
5959
!php/const Ibexa\OrderManagement\Value\Status::CANCELLED_PLACE:
6060
metadata:
61-
...
61+
# ...
6262
can_be_reordered: true
6363

6464
```

docs/commerce/payment/payum_integration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ ibexa_connector_payum:
4343
refunded: cancelled
4444
captured: pending
4545
authorized: authorized
46-
[...]
46+
# ...
4747
```
4848

4949
## Payment service name translations

0 commit comments

Comments
 (0)