diff options
| -rw-r--r-- | MediaBrowser.Api/MediaBrowser.Api.csproj | 1 | ||||
| -rw-r--r-- | MediaBrowser.WebDashboard/Api/DashboardService.cs | 8 | ||||
| -rw-r--r-- | MediaBrowser.WebDashboard/MediaBrowser.WebDashboard.csproj | 6 |
3 files changed, 13 insertions, 2 deletions
diff --git a/MediaBrowser.Api/MediaBrowser.Api.csproj b/MediaBrowser.Api/MediaBrowser.Api.csproj index 5f846a417..579a8d241 100644 --- a/MediaBrowser.Api/MediaBrowser.Api.csproj +++ b/MediaBrowser.Api/MediaBrowser.Api.csproj @@ -88,6 +88,7 @@ <Compile Include="ApiEntryPoint.cs" /> <Compile Include="SearchService.cs" /> <Compile Include="SystemService.cs" /> + <Compile Include="TvShowsService.cs" /> <Compile Include="UserLibrary\ArtistsService.cs" /> <Compile Include="UserLibrary\BaseItemsByNameService.cs" /> <Compile Include="UserLibrary\BaseItemsRequest.cs" /> diff --git a/MediaBrowser.WebDashboard/Api/DashboardService.cs b/MediaBrowser.WebDashboard/Api/DashboardService.cs index e2c18760b..006035ae5 100644 --- a/MediaBrowser.WebDashboard/Api/DashboardService.cs +++ b/MediaBrowser.WebDashboard/Api/DashboardService.cs @@ -101,7 +101,7 @@ namespace MediaBrowser.WebDashboard.Api /// </summary> /// <value>The request context.</value> public IRequestContext RequestContext { get; set; } - + /// <summary> /// Gets or sets the task manager. /// </summary> @@ -122,6 +122,9 @@ namespace MediaBrowser.WebDashboard.Api /// </summary> private readonly ILibraryManager _libraryManager; + /// <summary> + /// The _server configuration manager + /// </summary> private readonly IServerConfigurationManager _serverConfigurationManager; /// <summary> @@ -490,6 +493,7 @@ namespace MediaBrowser.WebDashboard.Api "supporterkeypage.js", "supporterpage.js", "tvgenres.js", + "tvnextup.js", "tvpeople.js", "tvrecommended.js", "tvshows.js", @@ -546,7 +550,7 @@ namespace MediaBrowser.WebDashboard.Api memoryStream.Position = 0; return memoryStream; } - + /// <summary> /// Appends the resource. /// </summary> diff --git a/MediaBrowser.WebDashboard/MediaBrowser.WebDashboard.csproj b/MediaBrowser.WebDashboard/MediaBrowser.WebDashboard.csproj index bc33a7cbe..eeadf6e34 100644 --- a/MediaBrowser.WebDashboard/MediaBrowser.WebDashboard.csproj +++ b/MediaBrowser.WebDashboard/MediaBrowser.WebDashboard.csproj @@ -273,6 +273,9 @@ <Content Include="dashboard-ui\scripts\search.js">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
+ <Content Include="dashboard-ui\scripts\tvnextup.js">
+ <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
+ </Content>
<Content Include="dashboard-ui\songs.html">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
@@ -404,6 +407,9 @@ <Content Include="dashboard-ui\tvgenres.html">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
+ <Content Include="dashboard-ui\tvnextup.html">
+ <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
+ </Content>
<Content Include="dashboard-ui\tvpeople.html">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
|
