Merge remote-tracking branch 'origin/v9/dev' into v9/cyclehack/autogeneration_of_json_schema

This commit is contained in:
Bjarke Berg
2021-07-06 07:34:15 +02:00
158 changed files with 3715 additions and 2052 deletions

View File

@@ -0,0 +1,23 @@

namespace Umbraco.Core.Dashboards
{
public class ContentDashboardSettings
{
private const string DefaultContentDashboardPath = "cms";
/// <summary>
/// Gets a value indicating whether the content dashboard should be available to all users.
/// </summary>
/// <value>
/// <c>true</c> if the dashboard is visible for all user groups; otherwise, <c>false</c>
/// and the default access rules for that dashboard will be in use.
/// </value>
public bool AllowContentDashboardAccessToAllUsers { get; set; } = true;
/// <summary>
/// Gets the path to use when constructing the URL for retrieving data for the content dashboard.
/// </summary>
/// <value>The URL path.</value>
public string ContentDashboardPath { get; set; } = DefaultContentDashboardPath;
}
}