Skip to content

Commit 649f861

Browse files
committed
review comments
1 parent 416ded9 commit 649f861

File tree

3 files changed

+5
-8
lines changed

3 files changed

+5
-8
lines changed
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
The following example creates and registers a conditional event named `plugin.magento.catalog.model.resource_model.product.save_low_stock_event`. Its parent is `plugin.magento.catalog.model.resource_model.product.save`. It defines rules that trigger when all of the conditions are true:
22

3-
* The value of `qty` is less than 20
4-
* The `category_id` is either 3, 4, or 5
3+
* The value of `qty` is less than `20`
4+
* The `category_id` is either `3`, `4`, or `5`
55
* The product `name` contains `TV`
6-
* The `store_id` of product category is either 1 or 2
6+
* The `store_id` of product category is either `1` or `2`
77

88
These fields are present and declared in the parent event.

src/pages/events/configure-additional-event-providers.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
title: Configure Additional Event Providers
33
description: Learn how to configure additional event providers in Adobe Commerce.
4-
edition: saas
54
keywords:
65
- Events
76
- Extensibility

src/pages/events/create-events.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,15 +65,13 @@ The contents of an `observer.catalog_product_save_after` event are similar to th
6565

6666
```json
6767
{
68-
"value": {
6968
"entity_id": "3",
7069
"sku": "test2",
7170
"is_new": "0"
72-
}
7371
}
7472
```
7573

76-
### Array of nested objects
74+
#### Array of nested objects
7775

7876
<NestedEvent />
7977

@@ -105,7 +103,7 @@ The contents of the transmitted event are similar to the following:
105103

106104
<ConditionalEvents />
107105

108-
### Example
106+
#### Example
109107

110108
```yaml
111109
Field: qty

0 commit comments

Comments
 (0)