aboutsummaryrefslogtreecommitdiff
path: root/src/Jellyfin.LiveTv/LiveTvConfigurationFactory.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Jellyfin.LiveTv/LiveTvConfigurationFactory.cs')
-rw-r--r--src/Jellyfin.LiveTv/LiveTvConfigurationFactory.cs25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/Jellyfin.LiveTv/LiveTvConfigurationFactory.cs b/src/Jellyfin.LiveTv/LiveTvConfigurationFactory.cs
new file mode 100644
index 0000000000..ddbf6345c5
--- /dev/null
+++ b/src/Jellyfin.LiveTv/LiveTvConfigurationFactory.cs
@@ -0,0 +1,25 @@
+using System.Collections.Generic;
+using MediaBrowser.Common.Configuration;
+using MediaBrowser.Model.LiveTv;
+
+namespace Jellyfin.LiveTv
+{
+ /// <summary>
+ /// <see cref="IConfigurationFactory" /> implementation for <see cref="LiveTvOptions" />.
+ /// </summary>
+ public class LiveTvConfigurationFactory : IConfigurationFactory
+ {
+ /// <inheritdoc />
+ public IEnumerable<ConfigurationStore> GetConfigurations()
+ {
+ return new ConfigurationStore[]
+ {
+ new ConfigurationStore
+ {
+ ConfigurationType = typeof(LiveTvOptions),
+ Key = "livetv"
+ }
+ };
+ }
+ }
+}