aboutsummaryrefslogtreecommitdiff
path: root/Emby.Notifications/NotificationConfigurationFactory.cs
diff options
context:
space:
mode:
authorPatrick Barron <barronpm@gmail.com>2023-01-28 09:43:55 -0500
committerGitHub <noreply@github.com>2023-01-28 07:43:55 -0700
commitfec23de427fe1c46e4ce1aaf31f1695c90232059 (patch)
treeb0226f1e9345a607e3e857e8e32ba62051f82ef7 /Emby.Notifications/NotificationConfigurationFactory.cs
parentabffd160c304486e9efbb8007fbd71a7e9b84449 (diff)
Remove Emby.Notifications (#9147)
Diffstat (limited to 'Emby.Notifications/NotificationConfigurationFactory.cs')
-rw-r--r--Emby.Notifications/NotificationConfigurationFactory.cs23
1 files changed, 0 insertions, 23 deletions
diff --git a/Emby.Notifications/NotificationConfigurationFactory.cs b/Emby.Notifications/NotificationConfigurationFactory.cs
deleted file mode 100644
index 3fb3553d0..000000000
--- a/Emby.Notifications/NotificationConfigurationFactory.cs
+++ /dev/null
@@ -1,23 +0,0 @@
-#pragma warning disable CS1591
-
-using System.Collections.Generic;
-using MediaBrowser.Common.Configuration;
-using MediaBrowser.Model.Notifications;
-
-namespace Emby.Notifications
-{
- public class NotificationConfigurationFactory : IConfigurationFactory
- {
- public IEnumerable<ConfigurationStore> GetConfigurations()
- {
- return new ConfigurationStore[]
- {
- new ConfigurationStore
- {
- Key = "notifications",
- ConfigurationType = typeof(NotificationOptions)
- }
- };
- }
- }
-}