aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcrobibero <cody@robibe.ro>2020-05-19 08:28:02 -0600
committercrobibero <cody@robibe.ro>2020-05-19 08:28:02 -0600
commitc4f8ba55f2b3424be4a6ff1044d13327fe36b687 (patch)
treec04a766e18e2c0a45dda56de292f8e968070ca01
parent7516e3ebbec82b732e8e4355ae108e7030e1e00e (diff)
Rename to AttachmentsController -> VideoAttachmentsController
-rw-r--r--Jellyfin.Api/Controllers/VideoAttachmentsController.cs (renamed from Jellyfin.Api/Controllers/AttachmentsController.cs)6
1 files changed, 3 insertions, 3 deletions
diff --git a/Jellyfin.Api/Controllers/AttachmentsController.cs b/Jellyfin.Api/Controllers/VideoAttachmentsController.cs
index 30fb951cf..69e847373 100644
--- a/Jellyfin.Api/Controllers/AttachmentsController.cs
+++ b/Jellyfin.Api/Controllers/VideoAttachmentsController.cs
@@ -17,17 +17,17 @@ namespace Jellyfin.Api.Controllers
/// </summary>
[Route("Videos")]
[Authorize]
- public class AttachmentsController : Controller
+ public class VideoAttachmentsController : Controller
{
private readonly ILibraryManager _libraryManager;
private readonly IAttachmentExtractor _attachmentExtractor;
/// <summary>
- /// Initializes a new instance of the <see cref="AttachmentsController"/> class.
+ /// Initializes a new instance of the <see cref="VideoAttachmentsController"/> class.
/// </summary>
/// <param name="libraryManager">Instance of the <see cref="ILibraryManager"/> interface.</param>
/// <param name="attachmentExtractor">Instance of the <see cref="IAttachmentExtractor"/> interface.</param>
- public AttachmentsController(
+ public VideoAttachmentsController(
ILibraryManager libraryManager,
IAttachmentExtractor attachmentExtractor)
{