diff options
| author | ConfusedPolarBear <33811686+ConfusedPolarBear@users.noreply.github.com> | 2020-06-18 01:29:47 -0500 |
|---|---|---|
| committer | ConfusedPolarBear <33811686+ConfusedPolarBear@users.noreply.github.com> | 2020-06-19 23:32:24 -0500 |
| commit | 4be476ec5312387f87134915d0fd132b2ad5fa3f (patch) | |
| tree | c8f4940e103cda72b146fb9cc7f13c7381c1e76e /Emby.Server.Implementations/QuickConnect/QuickConnectConfigurationFactory.cs | |
| parent | 82887ec7105e38070d91f5d29ce73637fcfe3b1d (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.cs | 27 |
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) - } - }; - } - } -} |
