You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
583 B
19 lines
583 B
using System;
|
|
using System.Linq;
|
|
using MediaBrowser.Common.Net.Handlers;
|
|
using MediaBrowser.Controller;
|
|
using MediaBrowser.Model.Plugins;
|
|
|
|
namespace MediaBrowser.Api.HttpHandlers
|
|
{
|
|
public class PluginConfigurationHandler : BaseJsonHandler<BasePluginConfiguration>
|
|
{
|
|
protected override BasePluginConfiguration GetObjectToSerialize()
|
|
{
|
|
string pluginName = QueryString["name"];
|
|
|
|
return Kernel.Instance.Plugins.First(p => p.Name.Equals(pluginName, StringComparison.OrdinalIgnoreCase)).Configuration;
|
|
}
|
|
}
|
|
}
|