2020-11-21 13:26:03 +00:00
|
|
|
using System;
|
2020-06-09 15:57:01 +00:00
|
|
|
using System.Collections.Generic;
|
2020-08-06 14:17:45 +00:00
|
|
|
using System.ComponentModel.DataAnnotations;
|
2020-12-06 23:48:54 +00:00
|
|
|
using System.Globalization;
|
|
|
|
using System.IO;
|
2020-06-09 15:57:01 +00:00
|
|
|
using System.Linq;
|
2020-12-06 23:48:54 +00:00
|
|
|
using System.Net.Mime;
|
2020-06-09 15:57:01 +00:00
|
|
|
using System.Text.Json;
|
|
|
|
using System.Threading.Tasks;
|
2020-12-06 23:48:54 +00:00
|
|
|
using Jellyfin.Api.Attributes;
|
2020-06-09 15:57:01 +00:00
|
|
|
using Jellyfin.Api.Constants;
|
|
|
|
using Jellyfin.Api.Models.PluginDtos;
|
2020-12-06 23:48:54 +00:00
|
|
|
using MediaBrowser.Common.Configuration;
|
2020-07-12 18:11:59 +00:00
|
|
|
using MediaBrowser.Common.Json;
|
2020-06-09 15:57:01 +00:00
|
|
|
using MediaBrowser.Common.Plugins;
|
|
|
|
using MediaBrowser.Common.Updates;
|
2020-12-06 23:48:54 +00:00
|
|
|
using MediaBrowser.Model.Configuration;
|
|
|
|
using MediaBrowser.Model.Net;
|
2020-06-09 15:57:01 +00:00
|
|
|
using MediaBrowser.Model.Plugins;
|
|
|
|
using Microsoft.AspNetCore.Authorization;
|
2020-06-21 00:02:07 +00:00
|
|
|
using Microsoft.AspNetCore.Http;
|
2020-06-09 15:57:01 +00:00
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
|
|
|
|
namespace Jellyfin.Api.Controllers
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Plugins controller.
|
|
|
|
/// </summary>
|
2020-06-22 13:44:11 +00:00
|
|
|
[Authorize(Policy = Policies.DefaultAuthorization)]
|
2020-06-09 15:57:01 +00:00
|
|
|
public class PluginsController : BaseJellyfinApiController
|
|
|
|
{
|
|
|
|
private readonly IInstallationManager _installationManager;
|
2020-12-06 23:48:54 +00:00
|
|
|
private readonly IPluginManager _pluginManager;
|
|
|
|
private readonly IConfigurationManager _config;
|
|
|
|
private readonly JsonSerializerOptions _serializerOptions;
|
2020-07-14 18:20:24 +00:00
|
|
|
|
2020-06-09 15:57:01 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Initializes a new instance of the <see cref="PluginsController"/> class.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="installationManager">Instance of the <see cref="IInstallationManager"/> interface.</param>
|
2020-12-06 23:48:54 +00:00
|
|
|
/// <param name="pluginManager">Instance of the <see cref="IPluginManager"/> interface.</param>
|
|
|
|
/// <param name="config">Instance of the <see cref="IConfigurationManager"/> interface.</param>
|
2020-06-09 15:57:01 +00:00
|
|
|
public PluginsController(
|
2020-12-06 23:48:54 +00:00
|
|
|
IInstallationManager installationManager,
|
|
|
|
IPluginManager pluginManager,
|
|
|
|
IConfigurationManager config)
|
2020-06-09 15:57:01 +00:00
|
|
|
{
|
|
|
|
_installationManager = installationManager;
|
2020-12-06 23:48:54 +00:00
|
|
|
_pluginManager = pluginManager;
|
2020-12-15 10:05:04 +00:00
|
|
|
_serializerOptions = JsonDefaults.GetCamelCaseOptions();
|
2020-12-06 23:48:54 +00:00
|
|
|
_config = config;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Get plugin security info.
|
|
|
|
/// </summary>
|
|
|
|
/// <response code="200">Plugin security info returned.</response>
|
|
|
|
/// <returns>Plugin security info.</returns>
|
|
|
|
[Obsolete("This endpoint should not be used.")]
|
|
|
|
[HttpGet("SecurityInfo")]
|
|
|
|
[ProducesResponseType(StatusCodes.Status200OK)]
|
|
|
|
public static ActionResult<PluginSecurityInfo> GetPluginSecurityInfo()
|
|
|
|
{
|
|
|
|
return new PluginSecurityInfo
|
|
|
|
{
|
|
|
|
IsMbSupporter = true,
|
|
|
|
SupporterKey = "IAmTotallyLegit"
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets registration status for a feature.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="name">Feature name.</param>
|
|
|
|
/// <response code="200">Registration status returned.</response>
|
|
|
|
/// <returns>Mb registration record.</returns>
|
|
|
|
[Obsolete("This endpoint should not be used.")]
|
|
|
|
[HttpPost("RegistrationRecords/{name}")]
|
|
|
|
[ProducesResponseType(StatusCodes.Status200OK)]
|
|
|
|
public static ActionResult<MBRegistrationRecord> GetRegistrationStatus([FromRoute, Required] string name)
|
|
|
|
{
|
|
|
|
return new MBRegistrationRecord
|
|
|
|
{
|
|
|
|
IsRegistered = true,
|
|
|
|
RegChecked = true,
|
|
|
|
TrialVersion = false,
|
|
|
|
IsValid = true,
|
|
|
|
RegError = false
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets registration status for a feature.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="name">Feature name.</param>
|
|
|
|
/// <response code="501">Not implemented.</response>
|
|
|
|
/// <returns>Not Implemented.</returns>
|
|
|
|
/// <exception cref="NotImplementedException">This endpoint is not implemented.</exception>
|
|
|
|
[Obsolete("Paid plugins are not supported")]
|
|
|
|
[HttpGet("Registrations/{name}")]
|
|
|
|
[ProducesResponseType(StatusCodes.Status501NotImplemented)]
|
|
|
|
public static ActionResult GetRegistration([FromRoute, Required] string name)
|
|
|
|
{
|
|
|
|
// TODO Once we have proper apps and plugins and decide to break compatibility with paid plugins,
|
|
|
|
// delete all these registration endpoints. They are only kept for compatibility.
|
|
|
|
throw new NotImplementedException();
|
2020-06-09 15:57:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets a list of currently installed plugins.
|
|
|
|
/// </summary>
|
|
|
|
/// <response code="200">Installed plugins returned.</response>
|
|
|
|
/// <returns>List of currently installed plugins.</returns>
|
|
|
|
[HttpGet]
|
2020-06-21 00:02:07 +00:00
|
|
|
[ProducesResponseType(StatusCodes.Status200OK)]
|
2020-06-24 20:43:28 +00:00
|
|
|
public ActionResult<IEnumerable<PluginInfo>> GetPlugins()
|
2020-06-09 15:57:01 +00:00
|
|
|
{
|
2020-12-06 23:48:54 +00:00
|
|
|
return Ok(_pluginManager.Plugins
|
|
|
|
.OrderBy(p => p.Name)
|
|
|
|
.Select(p => p.GetPluginInfo()));
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Enables a disabled plugin.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="pluginId">Plugin id.</param>
|
|
|
|
/// <param name="version">Plugin version.</param>
|
|
|
|
/// <response code="204">Plugin enabled.</response>
|
|
|
|
/// <response code="404">Plugin not found.</response>
|
|
|
|
/// <returns>An <see cref="NoContentResult"/> on success, or a <see cref="NotFoundResult"/> if the file could not be found.</returns>
|
2020-12-14 23:08:04 +00:00
|
|
|
[HttpPost("{pluginId}/{version}/Enable")]
|
2020-12-06 23:48:54 +00:00
|
|
|
[Authorize(Policy = Policies.RequiresElevation)]
|
|
|
|
[ProducesResponseType(StatusCodes.Status204NoContent)]
|
|
|
|
[ProducesResponseType(StatusCodes.Status404NotFound)]
|
2020-12-15 07:54:49 +00:00
|
|
|
public ActionResult EnablePlugin([FromRoute, Required] Guid pluginId, [FromRoute, Required] Version version)
|
2020-12-06 23:48:54 +00:00
|
|
|
{
|
|
|
|
if (!_pluginManager.TryGetPlugin(pluginId, version, out var plugin))
|
|
|
|
{
|
|
|
|
return NotFound();
|
|
|
|
}
|
|
|
|
|
|
|
|
_pluginManager.EnablePlugin(plugin!);
|
|
|
|
return NoContent();
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Disable a plugin.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="pluginId">Plugin id.</param>
|
|
|
|
/// <param name="version">Plugin version.</param>
|
|
|
|
/// <response code="204">Plugin disabled.</response>
|
|
|
|
/// <response code="404">Plugin not found.</response>
|
|
|
|
/// <returns>An <see cref="NoContentResult"/> on success, or a <see cref="NotFoundResult"/> if the file could not be found.</returns>
|
2020-12-14 23:08:04 +00:00
|
|
|
[HttpPost("{pluginId}/{version}/Disable")]
|
2020-12-06 23:48:54 +00:00
|
|
|
[Authorize(Policy = Policies.RequiresElevation)]
|
|
|
|
[ProducesResponseType(StatusCodes.Status204NoContent)]
|
|
|
|
[ProducesResponseType(StatusCodes.Status404NotFound)]
|
2020-12-15 07:55:14 +00:00
|
|
|
public ActionResult DisablePlugin([FromRoute, Required] Guid pluginId, [FromRoute, Required] Version version)
|
2020-12-06 23:48:54 +00:00
|
|
|
{
|
|
|
|
if (!_pluginManager.TryGetPlugin(pluginId, version, out var plugin))
|
|
|
|
{
|
|
|
|
return NotFound();
|
|
|
|
}
|
|
|
|
|
|
|
|
_pluginManager.DisablePlugin(plugin!);
|
|
|
|
return NoContent();
|
2020-06-09 15:57:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
2020-12-15 09:29:51 +00:00
|
|
|
/// Uninstalls a plugin by version.
|
2020-06-09 15:57:01 +00:00
|
|
|
/// </summary>
|
|
|
|
/// <param name="pluginId">Plugin id.</param>
|
2020-12-06 23:48:54 +00:00
|
|
|
/// <param name="version">Plugin version.</param>
|
2020-06-21 00:02:07 +00:00
|
|
|
/// <response code="204">Plugin uninstalled.</response>
|
2020-06-09 15:57:01 +00:00
|
|
|
/// <response code="404">Plugin not found.</response>
|
2020-06-21 15:33:40 +00:00
|
|
|
/// <returns>An <see cref="NoContentResult"/> on success, or a <see cref="NotFoundResult"/> if the file could not be found.</returns>
|
2020-12-14 23:08:04 +00:00
|
|
|
[HttpDelete("{pluginId}/{version}")]
|
2020-06-09 15:57:01 +00:00
|
|
|
[Authorize(Policy = Policies.RequiresElevation)]
|
2020-06-21 00:02:07 +00:00
|
|
|
[ProducesResponseType(StatusCodes.Status204NoContent)]
|
|
|
|
[ProducesResponseType(StatusCodes.Status404NotFound)]
|
2020-12-15 09:29:51 +00:00
|
|
|
public ActionResult UninstallPluginByVersion([FromRoute, Required] Guid pluginId, [FromRoute, Required] Version version)
|
2020-06-09 15:57:01 +00:00
|
|
|
{
|
2020-12-06 23:48:54 +00:00
|
|
|
if (!_pluginManager.TryGetPlugin(pluginId, version, out var plugin))
|
2020-06-09 15:57:01 +00:00
|
|
|
{
|
|
|
|
return NotFound();
|
|
|
|
}
|
|
|
|
|
2020-12-06 23:48:54 +00:00
|
|
|
_installationManager.UninstallPlugin(plugin!);
|
2020-06-21 00:02:07 +00:00
|
|
|
return NoContent();
|
2020-06-09 15:57:01 +00:00
|
|
|
}
|
|
|
|
|
2020-12-15 09:29:51 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Uninstalls a plugin.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="pluginId">Plugin id.</param>
|
|
|
|
/// <response code="204">Plugin uninstalled.</response>
|
|
|
|
/// <response code="404">Plugin not found.</response>
|
|
|
|
/// <returns>An <see cref="NoContentResult"/> on success, or a <see cref="NotFoundResult"/> if the file could not be found.</returns>
|
|
|
|
[HttpDelete("{pluginId}")]
|
|
|
|
[Authorize(Policy = Policies.RequiresElevation)]
|
|
|
|
[ProducesResponseType(StatusCodes.Status204NoContent)]
|
|
|
|
[ProducesResponseType(StatusCodes.Status404NotFound)]
|
2020-12-15 19:22:54 +00:00
|
|
|
[Obsolete("Please use the UninstallPluginByVersion API.")]
|
2020-12-15 09:29:51 +00:00
|
|
|
public ActionResult UninstallPlugin([FromRoute, Required] Guid pluginId)
|
|
|
|
{
|
|
|
|
// If no version is given, return the current instance.
|
|
|
|
var plugins = _pluginManager.Plugins.Where(p => p.Id.Equals(pluginId));
|
|
|
|
|
|
|
|
// Select the un-instanced one first.
|
|
|
|
var plugin = plugins.FirstOrDefault(p => p.Instance != null);
|
|
|
|
if (plugin == null)
|
|
|
|
{
|
|
|
|
// Then by the status.
|
|
|
|
plugin = plugins.OrderBy(p => p.Manifest.Status).FirstOrDefault();
|
|
|
|
}
|
|
|
|
|
|
|
|
_installationManager.UninstallPlugin(plugin!);
|
|
|
|
return NoContent();
|
|
|
|
}
|
|
|
|
|
2020-06-09 15:57:01 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Gets plugin configuration.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="pluginId">Plugin id.</param>
|
|
|
|
/// <response code="200">Plugin configuration returned.</response>
|
|
|
|
/// <response code="404">Plugin not found or plugin configuration not found.</response>
|
|
|
|
/// <returns>Plugin configuration.</returns>
|
|
|
|
[HttpGet("{pluginId}/Configuration")]
|
2020-06-21 00:02:07 +00:00
|
|
|
[ProducesResponseType(StatusCodes.Status200OK)]
|
|
|
|
[ProducesResponseType(StatusCodes.Status404NotFound)]
|
2020-12-06 23:48:54 +00:00
|
|
|
[ProducesFile(MediaTypeNames.Application.Json)]
|
2020-12-14 23:08:04 +00:00
|
|
|
public ActionResult<BasePluginConfiguration> GetPluginConfiguration([FromRoute, Required] Guid pluginId)
|
2020-06-09 15:57:01 +00:00
|
|
|
{
|
2020-12-14 23:08:04 +00:00
|
|
|
if (_pluginManager.TryGetPlugin(pluginId, null, out var plugin)
|
2020-12-06 23:48:54 +00:00
|
|
|
&& plugin!.Instance is IHasPluginConfiguration configPlugin)
|
2020-06-09 15:57:01 +00:00
|
|
|
{
|
2020-12-06 23:48:54 +00:00
|
|
|
return configPlugin.Configuration;
|
2020-06-09 15:57:01 +00:00
|
|
|
}
|
|
|
|
|
2020-12-06 23:48:54 +00:00
|
|
|
return NotFound();
|
2020-06-09 15:57:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Updates plugin configuration.
|
|
|
|
/// </summary>
|
|
|
|
/// <remarks>
|
|
|
|
/// Accepts plugin configuration as JSON body.
|
|
|
|
/// </remarks>
|
|
|
|
/// <param name="pluginId">Plugin id.</param>
|
2020-06-21 00:02:07 +00:00
|
|
|
/// <response code="204">Plugin configuration updated.</response>
|
|
|
|
/// <response code="404">Plugin not found or plugin does not have configuration.</response>
|
2020-06-09 15:57:01 +00:00
|
|
|
/// <returns>
|
|
|
|
/// A <see cref="Task" /> that represents the asynchronous operation to update plugin configuration.
|
2020-06-21 15:33:52 +00:00
|
|
|
/// The task result contains an <see cref="NoContentResult"/> indicating success, or <see cref="NotFoundResult"/>
|
2020-06-09 15:57:01 +00:00
|
|
|
/// when plugin not found or plugin doesn't have configuration.
|
|
|
|
/// </returns>
|
|
|
|
[HttpPost("{pluginId}/Configuration")]
|
2020-06-21 00:02:07 +00:00
|
|
|
[ProducesResponseType(StatusCodes.Status204NoContent)]
|
|
|
|
[ProducesResponseType(StatusCodes.Status404NotFound)]
|
2020-12-14 23:08:04 +00:00
|
|
|
public async Task<ActionResult> UpdatePluginConfiguration([FromRoute, Required] Guid pluginId)
|
2020-06-09 15:57:01 +00:00
|
|
|
{
|
2020-12-14 23:08:04 +00:00
|
|
|
if (!_pluginManager.TryGetPlugin(pluginId, null, out var plugin)
|
2020-12-06 23:48:54 +00:00
|
|
|
|| plugin?.Instance is not IHasPluginConfiguration configPlugin)
|
2020-06-09 15:57:01 +00:00
|
|
|
{
|
|
|
|
return NotFound();
|
|
|
|
}
|
|
|
|
|
2020-12-06 23:48:54 +00:00
|
|
|
var configuration = (BasePluginConfiguration?)await JsonSerializer.DeserializeAsync(Request.Body, configPlugin.ConfigurationType, _serializerOptions)
|
2020-06-09 15:57:01 +00:00
|
|
|
.ConfigureAwait(false);
|
|
|
|
|
2020-08-25 13:33:58 +00:00
|
|
|
if (configuration != null)
|
|
|
|
{
|
2020-12-06 23:48:54 +00:00
|
|
|
configPlugin.UpdateConfiguration(configuration);
|
2020-08-25 13:33:58 +00:00
|
|
|
}
|
|
|
|
|
2020-06-21 00:02:07 +00:00
|
|
|
return NoContent();
|
2020-06-09 15:57:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
2020-12-06 23:48:54 +00:00
|
|
|
/// Gets a plugin's image.
|
2020-06-09 15:57:01 +00:00
|
|
|
/// </summary>
|
2020-12-06 23:48:54 +00:00
|
|
|
/// <param name="pluginId">Plugin id.</param>
|
|
|
|
/// <param name="version">Plugin version.</param>
|
|
|
|
/// <response code="200">Plugin image returned.</response>
|
|
|
|
/// <returns>Plugin's image.</returns>
|
2020-12-14 23:08:04 +00:00
|
|
|
[HttpGet("{pluginId}/{version}/Image")]
|
2020-06-21 00:02:07 +00:00
|
|
|
[ProducesResponseType(StatusCodes.Status200OK)]
|
2020-12-06 23:48:54 +00:00
|
|
|
[ProducesResponseType(StatusCodes.Status404NotFound)]
|
|
|
|
[ProducesImageFile]
|
|
|
|
[AllowAnonymous]
|
2020-12-14 23:08:04 +00:00
|
|
|
public ActionResult GetPluginImage([FromRoute, Required] Guid pluginId, [FromRoute, Required] Version version)
|
2020-06-09 15:57:01 +00:00
|
|
|
{
|
2020-12-06 23:48:54 +00:00
|
|
|
if (!_pluginManager.TryGetPlugin(pluginId, version, out var plugin))
|
2020-06-09 15:57:01 +00:00
|
|
|
{
|
2020-12-06 23:48:54 +00:00
|
|
|
return NotFound();
|
|
|
|
}
|
|
|
|
|
|
|
|
var imgPath = Path.Combine(plugin!.Path, plugin!.Manifest.ImageUrl ?? string.Empty);
|
|
|
|
if (((ServerConfiguration)_config.CommonConfiguration).DisablePluginImages
|
|
|
|
|| plugin!.Manifest.ImageUrl == null
|
|
|
|
|| !System.IO.File.Exists(imgPath))
|
|
|
|
{
|
|
|
|
// Use a blank image.
|
|
|
|
var type = GetType();
|
|
|
|
var stream = type.Assembly.GetManifestResourceStream(type.Namespace + ".Plugins.blank.png");
|
|
|
|
return File(stream, "image/png");
|
|
|
|
}
|
|
|
|
|
|
|
|
imgPath = Path.Combine(plugin.Path, plugin.Manifest.ImageUrl);
|
|
|
|
return PhysicalFile(imgPath, MimeTypes.GetMimeType(imgPath));
|
2020-06-09 15:57:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
2020-12-06 23:48:54 +00:00
|
|
|
/// Gets a plugin's manifest.
|
2020-06-09 15:57:01 +00:00
|
|
|
/// </summary>
|
2020-12-06 23:48:54 +00:00
|
|
|
/// <param name="pluginId">Plugin id.</param>
|
|
|
|
/// <response code="204">Plugin manifest returned.</response>
|
|
|
|
/// <response code="404">Plugin not found.</response>
|
|
|
|
/// <returns>
|
|
|
|
/// A <see cref="Task" /> that represents the asynchronous operation to get the plugin's manifest.
|
|
|
|
/// The task result contains an <see cref="NoContentResult"/> indicating success, or <see cref="NotFoundResult"/>
|
|
|
|
/// when plugin not found.
|
|
|
|
/// </returns>
|
|
|
|
[HttpPost("{pluginId}/Manifest")]
|
|
|
|
[ProducesResponseType(StatusCodes.Status204NoContent)]
|
|
|
|
[ProducesResponseType(StatusCodes.Status404NotFound)]
|
|
|
|
[ProducesFile(MediaTypeNames.Application.Json)]
|
2020-12-14 23:08:04 +00:00
|
|
|
public ActionResult<PluginManifest> GetPluginManifest([FromRoute, Required] Guid pluginId)
|
2020-06-09 15:57:01 +00:00
|
|
|
{
|
2020-12-14 23:08:04 +00:00
|
|
|
if (_pluginManager.TryGetPlugin(pluginId, null, out var plugin))
|
2020-06-09 15:57:01 +00:00
|
|
|
{
|
2020-12-06 23:48:54 +00:00
|
|
|
return Ok(plugin!.Manifest);
|
|
|
|
}
|
|
|
|
|
|
|
|
return NotFound();
|
2020-06-09 15:57:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
2020-12-06 23:48:54 +00:00
|
|
|
/// Updates plugin security info.
|
2020-06-09 15:57:01 +00:00
|
|
|
/// </summary>
|
2020-12-06 23:48:54 +00:00
|
|
|
/// <param name="pluginSecurityInfo">Plugin security info.</param>
|
|
|
|
/// <response code="204">Plugin security info updated.</response>
|
|
|
|
/// <returns>An <see cref="NoContentResult"/>.</returns>
|
|
|
|
[Obsolete("This endpoint should not be used.")]
|
|
|
|
[HttpPost("SecurityInfo")]
|
|
|
|
[Authorize(Policy = Policies.RequiresElevation)]
|
|
|
|
[ProducesResponseType(StatusCodes.Status204NoContent)]
|
|
|
|
public ActionResult UpdatePluginSecurityInfo([FromBody, Required] PluginSecurityInfo pluginSecurityInfo)
|
2020-06-09 15:57:01 +00:00
|
|
|
{
|
2020-12-06 23:48:54 +00:00
|
|
|
return NoContent();
|
2020-06-09 15:57:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|