diff options
| author | David <daullmer@gmail.com> | 2020-06-26 13:48:56 +0200 |
|---|---|---|
| committer | David <daullmer@gmail.com> | 2020-06-26 13:48:56 +0200 |
| commit | ea855c3a756cd724fa2d8843fb67f087b1c7520f (patch) | |
| tree | c797c33c463fb992934918cb392fa34b4ce2bfea /Jellyfin.Api/Controllers/PluginsController.cs | |
| parent | fb9654e783a153871d484fcdb65cac905a1729b2 (diff) | |
| parent | 3b99e691a6ee52814e9b90f42489c8ea4e93dc47 (diff) | |
Merge branch 'api-migration' of github.com:jellyfin/jellyfin into api-instantmix
Diffstat (limited to 'Jellyfin.Api/Controllers/PluginsController.cs')
| -rw-r--r-- | Jellyfin.Api/Controllers/PluginsController.cs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Jellyfin.Api/Controllers/PluginsController.cs b/Jellyfin.Api/Controllers/PluginsController.cs index 979d40119..fd48983ea 100644 --- a/Jellyfin.Api/Controllers/PluginsController.cs +++ b/Jellyfin.Api/Controllers/PluginsController.cs @@ -42,13 +42,11 @@ namespace Jellyfin.Api.Controllers /// <summary> /// Gets a list of currently installed plugins. /// </summary> - /// <param name="isAppStoreEnabled">Optional. Unused.</param> /// <response code="200">Installed plugins returned.</response> /// <returns>List of currently installed plugins.</returns> [HttpGet] [ProducesResponseType(StatusCodes.Status200OK)] - [SuppressMessage("Microsoft.Performance", "CA1801:ReviewUnusedParameters", MessageId = "isAppStoreEnabled", Justification = "Imported from ServiceStack")] - public ActionResult<IEnumerable<PluginInfo>> GetPlugins([FromRoute] bool? isAppStoreEnabled) + public ActionResult<IEnumerable<PluginInfo>> GetPlugins() { return Ok(_appHost.Plugins.OrderBy(p => p.Name).Select(p => p.GetPluginInfo())); } |
