Files
Umbraco-CMS/src/Umbraco.Web/PropertyEditors/MemberPickerConfiguration.cs
T
2018-02-05 17:48:54 +01:00

13 lines
352 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" }
};
}
}