diff options
| author | crobibero <cody@robibe.ro> | 2020-08-03 14:38:51 -0600 |
|---|---|---|
| committer | crobibero <cody@robibe.ro> | 2020-08-03 14:38:51 -0600 |
| commit | 9e00aa3014c0044c0918a775c3394763666b30af (patch) | |
| tree | aaa4705547693af4f2e298e7a6481d7c77a67cb4 /Jellyfin.Api/Controllers/ItemsController.cs | |
| parent | 1535f363b28ab7e57354f2724f5f1900a000b5cc (diff) | |
fix openapi validation errors
Diffstat (limited to 'Jellyfin.Api/Controllers/ItemsController.cs')
| -rw-r--r-- | Jellyfin.Api/Controllers/ItemsController.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Api/Controllers/ItemsController.cs b/Jellyfin.Api/Controllers/ItemsController.cs index 49fb9238f..354741ced 100644 --- a/Jellyfin.Api/Controllers/ItemsController.cs +++ b/Jellyfin.Api/Controllers/ItemsController.cs @@ -140,7 +140,7 @@ namespace Jellyfin.Api.Controllers /// <param name="enableImages">Optional, include image information in output.</param> /// <returns>A <see cref="QueryResult{BaseItemDto}"/> with the items.</returns> [HttpGet("/Items")] - [HttpGet("/Users/{uId}/Items")] + [HttpGet("/Users/{uId}/Items", Name = "GetItems_2")] [ProducesResponseType(StatusCodes.Status200OK)] public ActionResult<QueryResult<BaseItemDto>> GetItems( [FromRoute] Guid? uId, |
