From 0d5d91b4c4575271d16fe507a328fbcbb1510acd Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Thu, 3 Nov 2016 03:35:00 -0400 Subject: move notification classes --- .../NotificationConfigurationFactory.cs | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 Emby.Server.Implementations/Notifications/NotificationConfigurationFactory.cs (limited to 'Emby.Server.Implementations/Notifications/NotificationConfigurationFactory.cs') diff --git a/Emby.Server.Implementations/Notifications/NotificationConfigurationFactory.cs b/Emby.Server.Implementations/Notifications/NotificationConfigurationFactory.cs new file mode 100644 index 000000000..a7c5b1233 --- /dev/null +++ b/Emby.Server.Implementations/Notifications/NotificationConfigurationFactory.cs @@ -0,0 +1,21 @@ +using MediaBrowser.Common.Configuration; +using MediaBrowser.Model.Notifications; +using System.Collections.Generic; + +namespace Emby.Server.Implementations.Notifications +{ + public class NotificationConfigurationFactory : IConfigurationFactory + { + public IEnumerable GetConfigurations() + { + return new List + { + new ConfigurationStore + { + Key = "notifications", + ConfigurationType = typeof (NotificationOptions) + } + }; + } + } +} -- cgit v1.2.3