aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Branding
diff options
context:
space:
mode:
Diffstat (limited to 'Emby.Server.Implementations/Branding')
-rw-r--r--Emby.Server.Implementations/Branding/BrandingConfigurationFactory.cs21
1 files changed, 21 insertions, 0 deletions
diff --git a/Emby.Server.Implementations/Branding/BrandingConfigurationFactory.cs b/Emby.Server.Implementations/Branding/BrandingConfigurationFactory.cs
new file mode 100644
index 0000000000..a29f55f168
--- /dev/null
+++ b/Emby.Server.Implementations/Branding/BrandingConfigurationFactory.cs
@@ -0,0 +1,21 @@
+using MediaBrowser.Common.Configuration;
+using MediaBrowser.Model.Branding;
+using System.Collections.Generic;
+
+namespace Emby.Server.Implementations.Branding
+{
+ public class BrandingConfigurationFactory : IConfigurationFactory
+ {
+ public IEnumerable<ConfigurationStore> GetConfigurations()
+ {
+ return new[]
+ {
+ new ConfigurationStore
+ {
+ ConfigurationType = typeof(BrandingOptions),
+ Key = "branding"
+ }
+ };
+ }
+ }
+}