2022-01-26 12:12:59 +01:00
|
|
|
namespace Umbraco.Cms.Core.Configuration.Models
|
|
|
|
|
{
|
|
|
|
|
[UmbracoOptions(Constants.Configuration.ConfigHelpPage)]
|
|
|
|
|
public class HelpPageSettings
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the allowed addresses to retrieve data for the content dashboard.
|
|
|
|
|
/// </summary>
|
2022-02-16 16:03:53 +01:00
|
|
|
public string[]? HelpPageUrlAllowList { get; set; }
|
2022-01-26 12:12:59 +01:00
|
|
|
}
|
|
|
|
|
}
|