diff options
| author | Bond-009 <bond.009@outlook.com> | 2026-05-12 18:13:11 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-05-12 18:13:11 +0200 |
| commit | 27a3ccb7e4d045e59428bf91ca7a8b9d3b040b14 (patch) | |
| tree | 54c2ce817658f7641ba958575daa131b2a7ee8a4 /Jellyfin.Api/Controllers/ItemsController.cs | |
| parent | a9865367d8aec1bd323680a3440427dfaac2a89b (diff) | |
| parent | 8437866ffa36461810776835fede1a3e109a20fe (diff) | |
consolidate OpenAPI categories and deprecate startup routes (#16757)
Diffstat (limited to 'Jellyfin.Api/Controllers/ItemsController.cs')
| -rw-r--r-- | Jellyfin.Api/Controllers/ItemsController.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Jellyfin.Api/Controllers/ItemsController.cs b/Jellyfin.Api/Controllers/ItemsController.cs index 53656186c8..e6ba4e7f29 100644 --- a/Jellyfin.Api/Controllers/ItemsController.cs +++ b/Jellyfin.Api/Controllers/ItemsController.cs @@ -31,7 +31,7 @@ namespace Jellyfin.Api.Controllers; /// </summary> [Route("")] [Authorize] -[Tags("Item")] +[Tags("Library")] public class ItemsController : BaseJellyfinApiController { private readonly IUserManager _userManager; @@ -955,6 +955,7 @@ public class ItemsController : BaseJellyfinApiController [HttpGet("UserItems/{itemId}/UserData")] [ProducesResponseType(StatusCodes.Status200OK)] [ProducesResponseType(StatusCodes.Status404NotFound)] + [Tags("UserData")] public ActionResult<UserItemDataDto?> GetItemUserData( [FromQuery] Guid? userId, [FromRoute, Required] Guid itemId) @@ -1010,6 +1011,7 @@ public class ItemsController : BaseJellyfinApiController [HttpPost("UserItems/{itemId}/UserData")] [ProducesResponseType(StatusCodes.Status200OK)] [ProducesResponseType(StatusCodes.Status404NotFound)] + [Tags("UserData")] public ActionResult<UserItemDataDto?> UpdateItemUserData( [FromQuery] Guid? userId, [FromRoute, Required] Guid itemId, |
