Added series progress/rating information back in. Left attempts at doing via a JOIN or raw SQL.
This commit is contained in:
parent
222959981f
commit
922c0153d3
9 changed files with 269 additions and 7 deletions
|
|
@ -39,5 +39,12 @@ namespace API.Interfaces
|
|||
Task<Volume> GetVolumeByIdAsync(int volumeId);
|
||||
Task<Series> GetSeriesByIdAsync(int seriesId);
|
||||
Task<int[]> GetChapterIdsForSeriesAsync(int[] seriesIds);
|
||||
/// <summary>
|
||||
/// Used to add Progress/Rating information to series list.
|
||||
/// </summary>
|
||||
/// <param name="userId"></param>
|
||||
/// <param name="series"></param>
|
||||
/// <returns></returns>
|
||||
Task AddSeriesModifiers(int userId, List<SeriesDto> series);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue