Skip to content

Commit

Permalink
feat: Add employees (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
Venatum authored Oct 30, 2023
2 parents 516d93f + 6ab22b0 commit d16faa6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,14 @@ if ($moduleManager->isInstalled('ps_eventbus')) {
The required consents are up to your needs, you may use:

- `info` (mandatory): The shop technical data such as the version of PrestaShop or PHP (read only)
- `modules` (mandatory): The list of modules installed on the shop (read only)
- `themes` (mandatory): The list of themes installed on the shop (read only)
- `carts`: Information about the shopping carts of the shop (read only)
- `modules`: The list of modules installed on the shop (read only)
- `themes`: The list of themes installed on the shop (read only)
- `carriers`: The characteristics of the carriers available on the shop (read only)
- `carts`: Information about the shopping carts of the shop (read only)
- `categories`: The list of product categories of the shop (read only)
- `currencies`: The list of currencies available in the shop (read only)
- `customers`: The anonymized list of the shop customers (read only)
- `employees`: The anonymized list of the store employees (read only)
- `languages`: Languages used by the shop (read only)
- `manufacturers`: List of manufacturers of the products sold by the shop (read only)
- `orders`: Information about orders placed on the shop (read only)
Expand All @@ -80,7 +81,7 @@ The required consents are up to your needs, you may use:
- `taxonomies`: Advanced categories available on the shop (read only)
- `wishlists`: The anonymized wishlists of the customers (read only)

| `info`, `modules` and `themes` consents are mandatory.
| `info` is mandatory.

## Add the CDC to your config page

Expand Down
3 changes: 2 additions & 1 deletion ps_tech_vendor_boilerplate.php
Original file line number Diff line number Diff line change
Expand Up @@ -152,11 +152,12 @@ public function getContent()
'info',
'modules',
'themes',
'carts',
'carriers',
'carts',
'categories',
'currencies',
'customers',
'employees',
'languages',
'manufacturers',
'orders',
Expand Down

0 comments on commit d16faa6

Please sign in to comment.