Starting missing conversion to backgrid

This commit is contained in:
Mark McDowall 2013-04-30 20:04:06 -07:00
commit 00276041ad
18 changed files with 148 additions and 204 deletions

View file

@ -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();
}
}
}