display program data path and bookmark in the dashboard

This commit is contained in:
Luke Pulverenti
2013-06-01 23:17:10 -04:00
parent 5b280de519
commit 7736c8cefc
4 changed files with 46 additions and 2 deletions

View File

@@ -191,7 +191,7 @@ namespace MediaBrowser.ServerApplication
{
base.OnLoggerLoaded();
_httpServerCreationTask = Task.Run(() => ServerFactory.CreateServer(this, LogManager, "Media Browser", "index.html"));
_httpServerCreationTask = Task.Run(() => ServerFactory.CreateServer(this, LogManager, "Media Browser", "dashboard/index.html"));
}
/// <summary>
@@ -516,7 +516,8 @@ namespace MediaBrowser.ServerApplication
FailedPluginAssemblies = FailedAssemblies.ToArray(),
InProgressInstallations = InstallationManager.CurrentInstallations.Select(i => i.Item1).ToArray(),
CompletedInstallations = InstallationManager.CompletedInstallations.ToArray(),
Id = _systemId
Id = _systemId,
ProgramDataPath = ApplicationPaths.ProgramDataPath
};
}