mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-06 14:22:55 +01:00
Add full stop at end of comments (SA1629)
This commit is contained in:
@@ -15,7 +15,7 @@ using Microsoft.Extensions.Logging;
|
||||
namespace MediaBrowser.Api
|
||||
{
|
||||
/// <summary>
|
||||
/// Class Plugins
|
||||
/// Class Plugins.
|
||||
/// </summary>
|
||||
[Route("/Plugins", "GET", Summary = "Gets a list of currently installed plugins")]
|
||||
[Authenticated]
|
||||
@@ -25,7 +25,7 @@ namespace MediaBrowser.Api
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Class UninstallPlugin
|
||||
/// Class UninstallPlugin.
|
||||
/// </summary>
|
||||
[Route("/Plugins/{Id}", "DELETE", Summary = "Uninstalls a plugin")]
|
||||
[Authenticated(Roles = "Admin")]
|
||||
@@ -40,7 +40,7 @@ namespace MediaBrowser.Api
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Class GetPluginConfiguration
|
||||
/// Class GetPluginConfiguration.
|
||||
/// </summary>
|
||||
[Route("/Plugins/{Id}/Configuration", "GET", Summary = "Gets a plugin's configuration")]
|
||||
[Authenticated]
|
||||
@@ -55,7 +55,7 @@ namespace MediaBrowser.Api
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Class UpdatePluginConfiguration
|
||||
/// Class UpdatePluginConfiguration.
|
||||
/// </summary>
|
||||
[Route("/Plugins/{Id}/Configuration", "POST", Summary = "Updates a plugin's configuration")]
|
||||
[Authenticated]
|
||||
@@ -69,7 +69,7 @@ namespace MediaBrowser.Api
|
||||
public string Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// The raw Http Request Input Stream
|
||||
/// The raw Http Request Input Stream.
|
||||
/// </summary>
|
||||
/// <value>The request stream.</value>
|
||||
public Stream RequestStream { get; set; }
|
||||
@@ -86,7 +86,7 @@ namespace MediaBrowser.Api
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Class GetPluginSecurityInfo
|
||||
/// Class GetPluginSecurityInfo.
|
||||
/// </summary>
|
||||
[Route("/Plugins/SecurityInfo", "GET", Summary = "Gets plugin registration information", IsHidden = true)]
|
||||
[Authenticated]
|
||||
@@ -95,7 +95,7 @@ namespace MediaBrowser.Api
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Class UpdatePluginSecurityInfo
|
||||
/// Class UpdatePluginSecurityInfo.
|
||||
/// </summary>
|
||||
[Route("/Plugins/SecurityInfo", "POST", Summary = "Updates plugin registration information", IsHidden = true)]
|
||||
[Authenticated(Roles = "Admin")]
|
||||
@@ -136,17 +136,17 @@ namespace MediaBrowser.Api
|
||||
public bool IsMBSupporter { get; set; }
|
||||
}
|
||||
/// <summary>
|
||||
/// Class PluginsService
|
||||
/// Class PluginsService.
|
||||
/// </summary>
|
||||
public class PluginService : BaseApiService
|
||||
{
|
||||
/// <summary>
|
||||
/// The _json serializer
|
||||
/// The _json serializer.
|
||||
/// </summary>
|
||||
private readonly IJsonSerializer _jsonSerializer;
|
||||
|
||||
/// <summary>
|
||||
/// The _app host
|
||||
/// The _app host.
|
||||
/// </summary>
|
||||
private readonly IApplicationHost _appHost;
|
||||
private readonly IInstallationManager _installationManager;
|
||||
|
||||
Reference in New Issue
Block a user