Refactored volume to contain pages and removed /reader/info API endpoint.
This commit is contained in:
parent
c2b41b774a
commit
28ce2bbba1
9 changed files with 571 additions and 18 deletions
|
@ -35,5 +35,11 @@ namespace API.Controllers
|
|||
{
|
||||
return Ok(await _seriesRepository.GetVolumesDtoAsync(seriesId));
|
||||
}
|
||||
|
||||
[HttpGet("volume")]
|
||||
public async Task<ActionResult<VolumeDto>> GetVolume(int volumeId)
|
||||
{
|
||||
return Ok(await _seriesRepository.GetVolumeDtoAsync(volumeId));
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue