Update endpoint docs

This commit is contained in:
crobibero 2020-05-02 17:12:56 -06:00
parent f3da5dc8b7
commit 7516e3ebbe
1 changed files with 3 additions and 1 deletions

View File

@ -41,7 +41,9 @@ namespace Jellyfin.Api.Controllers
/// <param name="videoId">Video ID.</param>
/// <param name="mediaSourceId">Media Source ID.</param>
/// <param name="index">Attachment Index.</param>
/// <returns>Attachment.</returns>
/// <response code="200">Attachment retrieved.</response>
/// <response code="404">Video or attachment not found.</response>
/// <returns>An <see cref="FileStreamResult"/> containing the attachment stream on success, or a <see cref="NotFoundResult"/> if the attachment could not be found.</returns>
[HttpGet("{VideoID}/{MediaSourceID}/Attachments/{Index}")]
[Produces("application/octet-stream")]
[ProducesResponseType(StatusCodes.Status200OK)]