added events reference

This commit is contained in:
Shahed Nasser
2022-05-27 16:59:25 +03:00
parent 5414148254
commit 22eeefba53
4 changed files with 1887 additions and 0 deletions

View File

@@ -93,4 +93,5 @@ You can then use `this.productService` anywhere in your subscribers methods.
## Whats Next 🚀
- [View the list of all events](events-list.md)
- [Learn how to create a service.](/advanced/backend/services/create-service)

File diff suppressed because it is too large Load Diff

View File

@@ -153,6 +153,11 @@ module.exports = {
id: "advanced/backend/subscribers/create-subscriber",
label: "Create a Subscriber"
},
{
type: "doc",
id: "advanced/backend/subscribers/events-list",
label: "List of Events"
},
]
},
{

View File

@@ -301,4 +301,20 @@ details summary {
.DocSearch-Container {
z-index: 1001 !important;
}
.reference-table th:nth-child(2),
.reference-table td:nth-child(2) {
width: 40%;
}
.reference-table th:nth-child(3),
.reference-table td:nth-child(3) {
width: 50%;
}
.reference-table .theme-code-block span {
max-width: 100%;
word-break: break-word;
white-space: break-spaces;
}