Add Splashscreen API endpoint to ImageController

This commit is contained in:
David Ullmer
2021-08-17 18:12:45 +02:00
committed by Cody Robibero
parent 3fb3ee074a
commit e026ba84c5
2 changed files with 173 additions and 65 deletions

View File

@@ -1,3 +1,5 @@
using System.Xml.Serialization;
#pragma warning disable CS1591
namespace MediaBrowser.Model.Branding
@@ -15,5 +17,11 @@ namespace MediaBrowser.Model.Branding
/// </summary>
/// <value>The custom CSS.</value>
public string? CustomCss { get; set; }
/// <summary>
/// Gets or sets the splashscreen location on disk.
/// </summary>
/// <value>The location of the user splashscreen.</value>
public string? SplashscreenLocation { get; set; }
}
}