aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.WebDashboard/Api/ConfigurationPageInfo.cs
diff options
context:
space:
mode:
authorstefan <stefan@hegedues.at>2018-09-12 19:26:21 +0200
committerstefan <stefan@hegedues.at>2018-09-12 19:26:21 +0200
commit48facb797ed912e4ea6b04b17d1ff190ac2daac4 (patch)
tree8dae77a31670a888d733484cb17dd4077d5444e8 /MediaBrowser.WebDashboard/Api/ConfigurationPageInfo.cs
parentc32d8656382a0eacb301692e0084377fc433ae9b (diff)
Update to 3.5.2 and .net core 2.1
Diffstat (limited to 'MediaBrowser.WebDashboard/Api/ConfigurationPageInfo.cs')
-rw-r--r--MediaBrowser.WebDashboard/Api/ConfigurationPageInfo.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/MediaBrowser.WebDashboard/Api/ConfigurationPageInfo.cs b/MediaBrowser.WebDashboard/Api/ConfigurationPageInfo.cs
index b69c14fee..4cb2444da 100644
--- a/MediaBrowser.WebDashboard/Api/ConfigurationPageInfo.cs
+++ b/MediaBrowser.WebDashboard/Api/ConfigurationPageInfo.cs
@@ -12,6 +12,8 @@ namespace MediaBrowser.WebDashboard.Api
/// <value>The name.</value>
public string Name { get; set; }
public bool EnableInMainMenu { get; set; }
+ public string MenuSection { get; set; }
+ public string MenuIcon { get; set; }
public string DisplayName { get; set; }
@@ -45,6 +47,8 @@ namespace MediaBrowser.WebDashboard.Api
{
Name = page.Name;
EnableInMainMenu = page.EnableInMainMenu;
+ MenuSection = page.MenuSection;
+ MenuIcon = page.MenuIcon;
DisplayName = string.IsNullOrWhiteSpace(page.DisplayName) ? plugin.Name : page.DisplayName;
// Don't use "N" because it needs to match Plugin.Id