From 53f4a8ce58282902d7cae34f07488ebd71447f2d Mon Sep 17 00:00:00 2001 From: David Date: Thu, 25 Jun 2020 17:15:08 +0200 Subject: [PATCH] Add missing response code documentation --- Jellyfin.Api/Controllers/CollectionController.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Jellyfin.Api/Controllers/CollectionController.cs b/Jellyfin.Api/Controllers/CollectionController.cs index d3f79afafc..29db0b1782 100644 --- a/Jellyfin.Api/Controllers/CollectionController.cs +++ b/Jellyfin.Api/Controllers/CollectionController.cs @@ -46,8 +46,10 @@ namespace Jellyfin.Api.Controllers /// Item Ids to add to the collection. /// Whether or not to lock the new collection. /// Optional. Create the collection within a specific folder. + /// Collection created. /// A with information about the new collection. [HttpPost] + [ProducesResponseType(StatusCodes.Status200OK)] public ActionResult CreateCollection( [FromQuery] string name, [FromQuery] string ids,