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.
30 lines
850 B
30 lines
850 B
using MediaBrowser.Common.Configuration;
|
|
using MediaBrowser.Model.Configuration;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Emby.Server.Implementations.Channels
|
|
{
|
|
public static class ChannelConfigurationExtension
|
|
{
|
|
public static ChannelOptions GetChannelsConfiguration(this IConfigurationManager manager)
|
|
{
|
|
return manager.GetConfiguration<ChannelOptions>("channels");
|
|
}
|
|
}
|
|
|
|
public class ChannelConfigurationFactory : IConfigurationFactory
|
|
{
|
|
public IEnumerable<ConfigurationStore> GetConfigurations()
|
|
{
|
|
return new List<ConfigurationStore>
|
|
{
|
|
new ConfigurationStore
|
|
{
|
|
Key = "channels",
|
|
ConfigurationType = typeof (ChannelOptions)
|
|
}
|
|
};
|
|
}
|
|
}
|
|
}
|