aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Channels/ChannelConfigurations.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Emby.Server.Implementations/Channels/ChannelConfigurations.cs')
-rw-r--r--Emby.Server.Implementations/Channels/ChannelConfigurations.cs29
1 files changed, 0 insertions, 29 deletions
diff --git a/Emby.Server.Implementations/Channels/ChannelConfigurations.cs b/Emby.Server.Implementations/Channels/ChannelConfigurations.cs
deleted file mode 100644
index ef0973e7f..000000000
--- a/Emby.Server.Implementations/Channels/ChannelConfigurations.cs
+++ /dev/null
@@ -1,29 +0,0 @@
-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)
- }
- };
- }
- }
-}