diff options
| author | Cody Robibero <cody@robibe.ro> | 2022-06-14 08:18:35 -0600 |
|---|---|---|
| committer | crobibero <cody@robibe.ro> | 2022-06-14 19:34:29 -0400 |
| commit | bee13d56446d8fb3cb158b389f1eb7ed6fe501aa (patch) | |
| tree | 7a74c2334f460038f95d437623fa122161a8e120 /MediaBrowser.Model/Branding | |
| parent | 06b2e7bcf500b19a5414000ff24fe32cba8b36ed (diff) | |
Fix splashscreen (#7895)
Diffstat (limited to 'MediaBrowser.Model/Branding')
| -rw-r--r-- | MediaBrowser.Model/Branding/BrandingOptions.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Branding/BrandingOptions.cs b/MediaBrowser.Model/Branding/BrandingOptions.cs index cc42c1718..a0adb56ef 100644 --- a/MediaBrowser.Model/Branding/BrandingOptions.cs +++ b/MediaBrowser.Model/Branding/BrandingOptions.cs @@ -21,6 +21,11 @@ public class BrandingOptions public string? CustomCss { get; set; } /// <summary> + /// Gets or sets a value indicating whether to enable the splashscreen. + /// </summary> + public bool SplashscreenEnabled { get; set; } = true; + + /// <summary> /// Gets or sets the splashscreen location on disk. /// </summary> /// <remarks> |
