mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-24 01:34:45 +03:00
added live tv settings page
This commit is contained in:
@@ -223,7 +223,10 @@ namespace MediaBrowser.Model.Configuration
|
||||
public string TranscodingTempPath { get; set; }
|
||||
|
||||
public bool EnableAutomaticRestart { get; set; }
|
||||
|
||||
|
||||
|
||||
public LiveTvOptions LiveTvOptions { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="ServerConfiguration" /> class.
|
||||
/// </summary>
|
||||
@@ -287,6 +290,8 @@ namespace MediaBrowser.Model.Configuration
|
||||
{
|
||||
MaxBackdrops = 1
|
||||
};
|
||||
|
||||
LiveTvOptions = new LiveTvOptions();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -303,4 +308,9 @@ namespace MediaBrowser.Model.Configuration
|
||||
HighQuality,
|
||||
MaxQuality
|
||||
}
|
||||
|
||||
public class LiveTvOptions
|
||||
{
|
||||
public int? GuideDays { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user