mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 02:37:08 -07:00
Starting missing conversion to backgrid
This commit is contained in:
parent
af2da6380b
commit
00276041ad
18 changed files with 148 additions and 204 deletions
|
@ -28,7 +28,8 @@ namespace NzbDrone.Api.Missing
|
|||
var episodes = _episodeService.EpisodesWithoutFiles(includeSpecials);
|
||||
|
||||
//TODO: Include the Series Title
|
||||
return Mapper.Map<List<Episode>, List<EpisodeResource>>(episodes).AsResponse();
|
||||
//TODO: Remove Take(20)
|
||||
return Mapper.Map<List<Episode>, List<EpisodeResource>>(episodes).Take(20).AsResponse();
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue