mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-02-07 21:22:31 +00:00
Finish addressing review comments
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
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)
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user