aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/AppBase
diff options
context:
space:
mode:
authorCody Robibero <cody@robibe.ro>2022-04-09 08:45:13 -0600
committerJoshua Boniface <joshua@boniface.me>2022-04-17 15:45:11 -0400
commit7424f0ca8cef9ca1850420a5f3a5761ce764680b (patch)
tree95ee84b9476f6d233f88b00e12d863cd76ea791a /Emby.Server.Implementations/AppBase
parent834fe85185ffcd4cd1fbf0447e658d6d77b9e10a (diff)
Merge pull request #7561 from DMouse10462/named-config-api-fix
Fix NamedConfiguration API Generation (cherry picked from commit d7c548f3dbb74c03903cd9bb86ab3af33e295d15) Signed-off-by: Joshua Boniface <joshua@boniface.me>
Diffstat (limited to 'Emby.Server.Implementations/AppBase')
-rw-r--r--Emby.Server.Implementations/AppBase/BaseConfigurationManager.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/Emby.Server.Implementations/AppBase/BaseConfigurationManager.cs b/Emby.Server.Implementations/AppBase/BaseConfigurationManager.cs
index 19fe0b108..2a4a8fb13 100644
--- a/Emby.Server.Implementations/AppBase/BaseConfigurationManager.cs
+++ b/Emby.Server.Implementations/AppBase/BaseConfigurationManager.cs
@@ -399,6 +399,12 @@ namespace Emby.Server.Implementations.AppBase
}
/// <inheritdoc />
+ public ConfigurationStore[] GetConfigurationStores()
+ {
+ return _configurationStores;
+ }
+
+ /// <inheritdoc />
public Type GetConfigurationType(string key)
{
return GetConfigurationStore(key)