21 lines
459 B
C#
21 lines
459 B
C#
using System;
|
|
using Umbraco.Core.Composing;
|
|
using Umbraco.Core.Dashboards;
|
|
|
|
namespace Umbraco.Web.Dashboards
|
|
{
|
|
[Weight(20)]
|
|
public class ExamineDashboard : IDashboard
|
|
{
|
|
public string Alias => "settingsExamine";
|
|
|
|
public string[] Sections => new [] { "settings" };
|
|
|
|
public string View => "views/dashboard/settings/examinemanagement.html";
|
|
|
|
public IAccessRule[] AccessRules => Array.Empty<IAccessRule>();
|
|
}
|
|
|
|
|
|
}
|