Skip to content

Commit bf74c93

Browse files
author
Ben Szymanski
committed
Parity for v15, v17
1 parent 2b700ab commit bf74c93

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

15/umbraco-cms/reference/content-delivery-api/custom-property-editors-support.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ The `itemDetails` property of the `pickedItem` in the JSON response contains the
230230

231231
## Supporting Model Classes
232232

233-
{% code title="MyCustomPickerValueConverter.cs" %}
233+
{% code title="MyCustomPickerValueConverterModel.cs" %}
234234
```csharp
235235
public class DeliveryApiCustomPicker
236236
{

17/umbraco-cms/reference/content-delivery-api/custom-property-editors-support.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
22
description: >-
3-
Discover how to customize the Content Delivery API's response for custom property editors.
3+
Customize the Content Delivery API's response for custom property editors.
44
---
55

66
# Custom property editors support
77

88
Out of the box, the Delivery API supports custom property editors, ensuring they are rendered alongside the built-in ones in Umbraco. However, if the output generated by a property editor isn't optimal for a headless context, developers can customize the API response. This customization won't impact the Razor rendering, allowing developers to tailor the Content Delivery API response according to their specific requirements.
99

10-
This article will demonstrate how to work with the `IDeliveryApiPropertyValueConverter` interface and implement custom [property expansion](./property-expansion-and-limiting.md) for custom property editors.
10+
This article discusses how to work with the `IDeliveryApiPropertyValueConverter` interface and implement custom [property expansion](./property-expansion-and-limiting.md) for custom property editors.
1111

1212
## Prerequisite
1313

@@ -19,7 +19,7 @@ This article will not dive into the details of creating a custom property editor
1919

2020
To customize the output of a property value editor in the Delivery API, opt-in by implementing the `IDeliveryApiPropertyValueConverter` interface.
2121

22-
The code example below showcases the implementation of this interface in the property value converter for `My.Custom.Picker`. The focus will be on customizing the methods provided by the `IDeliveryApiPropertyValueConverter`, as they are responsible for customizing the Delivery API response.
22+
The code example below showcases the implementation of this interface in the property value converter for `My.Custom.Picker`. These code samples focus on the methods provided by the `IDeliveryApiPropertyValueConverter`, which are responsible for customizing the Delivery API response.
2323

2424
Response model classes can be found near the end of this article.
2525

0 commit comments

Comments
 (0)