diff options
| author | dkanada <dkanada@users.noreply.github.com> | 2026-04-26 16:13:22 +0900 |
|---|---|---|
| committer | dkanada <dkanada@users.noreply.github.com> | 2026-04-26 16:13:22 +0900 |
| commit | a9117bcda4ba002f39f5e8073d6d6ed7e66a3c16 (patch) | |
| tree | c553ff9278175a4e880306d11755abec1d7a73e1 /Jellyfin.Api/Controllers/ScheduledTasksController.cs | |
| parent | ec9c94bd7a993a7cfba1cb81730a78b06f5cf37f (diff) | |
use decorators to improve openapi endpoint categories
Diffstat (limited to 'Jellyfin.Api/Controllers/ScheduledTasksController.cs')
| -rw-r--r-- | Jellyfin.Api/Controllers/ScheduledTasksController.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Api/Controllers/ScheduledTasksController.cs b/Jellyfin.Api/Controllers/ScheduledTasksController.cs index 065466cbca..f122d0f5e5 100644 --- a/Jellyfin.Api/Controllers/ScheduledTasksController.cs +++ b/Jellyfin.Api/Controllers/ScheduledTasksController.cs @@ -2,7 +2,6 @@ using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; -using Jellyfin.Api.Constants; using MediaBrowser.Common.Api; using MediaBrowser.Model.Tasks; using Microsoft.AspNetCore.Authorization; @@ -15,6 +14,7 @@ namespace Jellyfin.Api.Controllers; /// Scheduled Tasks Controller. /// </summary> [Authorize(Policy = Policies.RequiresElevation)] +[Tags("ScheduledTask")] public class ScheduledTasksController : BaseJellyfinApiController { private readonly ITaskManager _taskManager; |
