aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/QuickConnect/QuickConnectConfigurationFactory.cs
diff options
context:
space:
mode:
authorConfusedPolarBear <33811686+ConfusedPolarBear@users.noreply.github.com>2020-06-18 01:29:47 -0500
committerConfusedPolarBear <33811686+ConfusedPolarBear@users.noreply.github.com>2020-06-19 23:32:24 -0500
commit4be476ec5312387f87134915d0fd132b2ad5fa3f (patch)
treec8f4940e103cda72b146fb9cc7f13c7381c1e76e /Emby.Server.Implementations/QuickConnect/QuickConnectConfigurationFactory.cs
parent82887ec7105e38070d91f5d29ce73637fcfe3b1d (diff)
Move all settings into the main server configuration
Decreased the timeout from 30 minutes to 5. Public lookup values have been replaced with the short code.
Diffstat (limited to 'Emby.Server.Implementations/QuickConnect/QuickConnectConfigurationFactory.cs')
-rw-r--r--Emby.Server.Implementations/QuickConnect/QuickConnectConfigurationFactory.cs27
1 files changed, 0 insertions, 27 deletions
diff --git a/Emby.Server.Implementations/QuickConnect/QuickConnectConfigurationFactory.cs b/Emby.Server.Implementations/QuickConnect/QuickConnectConfigurationFactory.cs
deleted file mode 100644
index d7bc84c5e..000000000
--- a/Emby.Server.Implementations/QuickConnect/QuickConnectConfigurationFactory.cs
+++ /dev/null
@@ -1,27 +0,0 @@
-using System.Collections.Generic;
-using MediaBrowser.Common.Configuration;
-
-namespace Emby.Server.Implementations.QuickConnect
-{
- /// <summary>
- /// Configuration factory for quick connect.
- /// </summary>
- public class QuickConnectConfigurationFactory : IConfigurationFactory
- {
- /// <summary>
- /// Returns the current quick connect configuration.
- /// </summary>
- /// <returns>Current quick connect configuration.</returns>
- public IEnumerable<ConfigurationStore> GetConfigurations()
- {
- return new[]
- {
- new ConfigurationStore
- {
- Key = "quickconnect",
- ConfigurationType = typeof(QuickConnectConfiguration)
- }
- };
- }
- }
-}