Skip to content

Commit 3f2d9cf

Browse files
committed
Fix Enterprise everywhere
1 parent ce10b94 commit 3f2d9cf

File tree

6 files changed

+20
-12
lines changed

6 files changed

+20
-12
lines changed

content/rest-api/overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,8 @@ Also, in 2.0, the API has been enriched with these new entities:
106106
- [Association type](/documentation/resources.html#association-type-20-only),
107107
- [Currency](/documentation/resources.html#currency-20-only),
108108
- [Measure family](/documentation/resources.html#measure-family-20-only),
109-
- Product draft (Entreprise edition only),
110-
- [Published product](/documentation/resources.html#published-product-20-and-ee-only) (Entreprise edition only).
109+
- Product draft (Enterprise edition only),
110+
- [Published product](/documentation/resources.html#published-product-20-and-ee-only) (Enterprise edition only).
111111

112112
For a detailed presentation as well as the format of each of these resources, take a look to the [Resources](/documentation/resources.html).
113113

content/rest-api/resources.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -657,6 +657,14 @@ Below is the JSON standard format representing a product.
657657
}
658658
```
659659

660+
::: warning
661+
Note that the `parent` field is only available in the 2.0 version, as this is a brand new feature of the 2.0.
662+
:::
663+
664+
::: warning
665+
Note that the `metadata` field in only available in the 2.0 version and as it is an Enterprise Edition feature, you won't have this field on a Community Edition PIM.
666+
:::
667+
660668
::: panel-link Want more details about the product resource? [Check its endpoints here!](/api-reference.html#Products)
661669
:::
662670

@@ -878,7 +886,7 @@ Endpoints for the product models are only available starting the 2.0 version.
878886
A published product is a product that was published by a user in order to freeze a given version of the product. It can be very useful when you want to work on a new version of your product for the next collection for example, but in the meantime, you still want to export the previous version of your product to your channels.
879887

880888
::: warning
881-
This is an Entreprise Edition feature. So you won't be able to call this endpoint if you are working on a Community Edition PIM. ;)
889+
This is an Enterprise Edition feature. So you won't be able to call this endpoint if you are working on a Community Edition PIM. ;)
882890
:::
883891

884892
In the Akeneo UI v2.0, you can find the published products by clicking on the `...` button in the top right corner, when you are on the products grid. Then select the `Published products` option. You will then see a grid really similar to the classical product grid.

content/rest-api/security.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,5 +300,5 @@ As accessing the API grants higher privileges than when using the UI, we strongl
300300
:::
301301

302302
:::info
303-
Note that if a role has `Overall Web API` access, then it means that all the users depending on that role will be able to make requests on products, product models and published products. There is no way to only restrict the access on products, except if you are using a 2.0 Entreprise Edition. In this case, the EE permissions based on user groups are applied on the API for the products and the published products.
303+
Note that if a role has `Overall Web API` access, then it means that all the users depending on that role will be able to make requests on products, product models and published products. There is no way to only restrict the access on products, except if you are using a 2.0 Enterprise Edition. In this case, the EE permissions based on user groups are applied on the API for the products and the published products.
304304
:::

content/swagger/resources/products/routes/products.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ get:
66
x-versions:
77
- 1.7
88
- 2.0
9-
description: This endpoint allows you to get a list of products. Products are paginated and they can be filtered. If you are using a v2.0 Entreprise Edition PIM, permissions based on your user groups are applied to the set of products you request.
9+
description: This endpoint allows you to get a list of products. Products are paginated and they can be filtered. If you are using a v2.0 Enterprise Edition PIM, permissions based on your user groups are applied to the set of products you request.
1010
parameters:
1111
- name: search
1212
in: query
@@ -267,7 +267,7 @@ post:
267267
x-versions:
268268
- 1.7
269269
- 2.0
270-
description: This endpoint allows you to create a new product. If you are using a v2.0 Entreprise Edition PIM, permissions based on your user groups are applied to the product you try to create.
270+
description: This endpoint allows you to create a new product. If you are using a v2.0 Enterprise Edition PIM, permissions based on your user groups are applied to the product you try to create.
271271
parameters:
272272
- name: body
273273
in: body
@@ -294,7 +294,7 @@ patch:
294294
x-versions:
295295
- 1.7
296296
- 2.0
297-
description: This endpoint allows you to update and/or create several products at once. Know more about <a href="/documentation/update.html#update-behavior">Update behavior</a>. Note that if no product exists for the given identifier, it creates it. If you are using a v2.0 Entreprise Edition PIM, permissions based on your user groups are applied to the products you try to update. It may result in the creation of drafts if you only have edit rights through the product's categories.
297+
description: This endpoint allows you to update and/or create several products at once. Know more about <a href="/documentation/update.html#update-behavior">Update behavior</a>. Note that if no product exists for the given identifier, it creates it. If you are using a v2.0 Enterprise Edition PIM, permissions based on your user groups are applied to the products you try to update. It may result in the creation of drafts if you only have edit rights through the product's categories.
298298
x-body-by-line: Contains several lines, each line is a product in JSON standard format
299299
parameters:
300300
- name: body

content/swagger/resources/products/routes/products_code.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ get:
66
x-versions:
77
- 1.7
88
- 2.0
9-
description: This endpoint allows you to get the information about a given product. If you are using a v2.0 Entreprise Edition PIM, permissions based on your user groups are applied to the product you request.
9+
description: This endpoint allows you to get the information about a given product. If you are using a v2.0 Enterprise Edition PIM, permissions based on your user groups are applied to the product you request.
1010
parameters:
1111
- $ref: '#/parameters/code'
1212
responses:
@@ -31,7 +31,7 @@ patch:
3131
x-versions:
3232
- 1.7
3333
- 2.0
34-
description: This endpoint allows you to update a given product. Know more about <a href="/documentation/update.html#update-behavior">Update behavior</a>. Note that if no product exists for the given identifier, it creates it. If you are using a v2.0 Entreprise Edition PIM, permissions based on your user groups are applied to the product you try to update. It may result in the creation of a draft if you only have edit rights through the product's categories.
34+
description: This endpoint allows you to update a given product. Know more about <a href="/documentation/update.html#update-behavior">Update behavior</a>. Note that if no product exists for the given identifier, it creates it. If you are using a v2.0 Enterprise Edition PIM, permissions based on your user groups are applied to the product you try to update. It may result in the creation of a draft if you only have edit rights through the product's categories.
3535
parameters:
3636
- $ref: '#/parameters/code'
3737
- name: body
@@ -60,7 +60,7 @@ delete:
6060
x-versions:
6161
- 1.7
6262
- 2.0
63-
description: This endpoint allows you to delete a given product. If you are using a v2.0 Entreprise Edition PIM, permissions based on your user groups are applied to the product you try to delete.
63+
description: This endpoint allows you to delete a given product. If you are using a v2.0 Enterprise Edition PIM, permissions based on your user groups are applied to the product you try to delete.
6464
parameters:
6565
- $ref: '#/parameters/code'
6666
responses:

src/index.handlebars

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@
126126
<h2 class="text-center">Quick resources access</h2>
127127
</div>
128128
<div class="col-xs-12 col-lg-offset-2 col-lg-8">
129-
<h3 class="text-center">Community & Entreprise Editions</h3>
129+
<h3 class="text-center">Community & Enterprise Editions</h3>
130130
<div class="row">
131131
<div class="col-xs-12">
132132
<a href="/api-reference-index.html#Products" class="link-resource center-block">
@@ -183,7 +183,7 @@
183183
</div>
184184
</div>
185185
<div class="col-xs-12 col-lg-offset-2 col-lg-8">
186-
<h3 class="text-center">Entreprise Edition Only</h3>
186+
<h3 class="text-center">Enterprise Edition Only</h3>
187187
<div class="row">
188188
<div class="col-xs-12 access-resources">
189189
<a href="/api-reference-index.html#PublishedProducts" class="link-resource">

0 commit comments

Comments
 (0)