Files
Umbraco-CMS/src/Umbraco.Core/PropertyEditors/MemberPickerConfiguration.cs

14 lines
353 B
C#

using System.Collections.Generic;
using Umbraco.Core.PropertyEditors;
namespace Umbraco.Web.PropertyEditors
{
public class MemberPickerConfiguration : ConfigurationEditor
{
public override IDictionary<string, object> DefaultConfiguration => new Dictionary<string, object>
{
{ "idType", "udi" }
};
}
}