* Clean up datatype configurations for V14 * Fix merge * Remove ParameterEditorCollection + revert accidental changes to core project file
18 lines
427 B
C#
18 lines
427 B
C#
// Copyright (c) Umbraco.
|
|
// See LICENSE for more details.
|
|
|
|
using Umbraco.Cms.Core.IO;
|
|
|
|
namespace Umbraco.Cms.Core.PropertyEditors;
|
|
|
|
/// <summary>
|
|
/// Represents the configuration editor for the rich text value editor.
|
|
/// </summary>
|
|
public class RichTextConfigurationEditor : ConfigurationEditor<RichTextConfiguration>
|
|
{
|
|
public RichTextConfigurationEditor(IIOHelper ioHelper)
|
|
: base(ioHelper)
|
|
{
|
|
}
|
|
}
|