diff options
| author | Cody Robibero <cody@robibe.ro> | 2022-04-09 08:45:13 -0600 |
|---|---|---|
| committer | Joshua Boniface <joshua@boniface.me> | 2022-04-17 15:45:11 -0400 |
| commit | 7424f0ca8cef9ca1850420a5f3a5761ce764680b (patch) | |
| tree | 95ee84b9476f6d233f88b00e12d863cd76ea791a /Emby.Server.Implementations/AppBase/BaseConfigurationManager.cs | |
| parent | 834fe85185ffcd4cd1fbf0447e658d6d77b9e10a (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/BaseConfigurationManager.cs')
| -rw-r--r-- | Emby.Server.Implementations/AppBase/BaseConfigurationManager.cs | 6 |
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) |
