2019-01-23 14:37:33 +00:00
|
|
|
|
using System;
|
2019-02-11 15:30:11 +01:00
|
|
|
|
using Umbraco.Core;
|
2019-01-23 14:37:33 +00:00
|
|
|
|
using Umbraco.Core.Composing;
|
|
|
|
|
|
using Umbraco.Core.Dashboards;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Umbraco.Web.Dashboards
|
|
|
|
|
|
{
|
|
|
|
|
|
[Weight(10)]
|
2019-01-28 12:20:22 +01:00
|
|
|
|
public class FormsDashboard : IDashboard
|
2019-01-23 14:37:33 +00:00
|
|
|
|
{
|
|
|
|
|
|
public string Alias => "formsInstall";
|
|
|
|
|
|
|
2019-02-12 12:22:36 +11:00
|
|
|
|
public string[] Sections => new [] { Constants.Applications.Forms };
|
2019-01-23 14:37:33 +00:00
|
|
|
|
|
|
|
|
|
|
public string View => "views/dashboard/forms/formsdashboardintro.html";
|
|
|
|
|
|
|
|
|
|
|
|
public IAccessRule[] AccessRules => Array.Empty<IAccessRule>();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|