瀏覽代碼

Rename to AttachmentsController -> VideoAttachmentsController

crobibero 5 年之前
父節點
當前提交
c4f8ba55f2
共有 1 個文件被更改,包括 3 次插入3 次删除
  1. 3 3
      Jellyfin.Api/Controllers/VideoAttachmentsController.cs

+ 3 - 3
Jellyfin.Api/Controllers/AttachmentsController.cs → Jellyfin.Api/Controllers/VideoAttachmentsController.cs

@@ -17,17 +17,17 @@ namespace Jellyfin.Api.Controllers
     /// </summary>
     /// </summary>
     [Route("Videos")]
     [Route("Videos")]
     [Authorize]
     [Authorize]
-    public class AttachmentsController : Controller
+    public class VideoAttachmentsController : Controller
     {
     {
         private readonly ILibraryManager _libraryManager;
         private readonly ILibraryManager _libraryManager;
         private readonly IAttachmentExtractor _attachmentExtractor;
         private readonly IAttachmentExtractor _attachmentExtractor;
 
 
         /// <summary>
         /// <summary>
-        /// Initializes a new instance of the <see cref="AttachmentsController"/> class.
+        /// Initializes a new instance of the <see cref="VideoAttachmentsController"/> class.
         /// </summary>
         /// </summary>
         /// <param name="libraryManager">Instance of the <see cref="ILibraryManager"/> interface.</param>
         /// <param name="libraryManager">Instance of the <see cref="ILibraryManager"/> interface.</param>
         /// <param name="attachmentExtractor">Instance of the <see cref="IAttachmentExtractor"/> interface.</param>
         /// <param name="attachmentExtractor">Instance of the <see cref="IAttachmentExtractor"/> interface.</param>
-        public AttachmentsController(
+        public VideoAttachmentsController(
             ILibraryManager libraryManager,
             ILibraryManager libraryManager,
             IAttachmentExtractor attachmentExtractor)
             IAttachmentExtractor attachmentExtractor)
         {
         {