Files
Umbraco-CMS/src/Umbraco.Web/PropertyEditors/UserPickerConfiguration.cs
2020-07-23 16:08:24 +02:00

15 lines
392 B
C#

using System.Collections.Generic;
using Umbraco.Core.PropertyEditors;
namespace Umbraco.Web.PropertyEditors
{
public class UserPickerConfiguration : ConfigurationEditor
{
public override IDictionary<string, object> DefaultConfiguration => new Dictionary<string, object>
{
{ "entityType", "User" },
{ "multiPicker", "0" }
};
}
}