mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-30 04:18:27 +01:00
Adding the UI to the same repo. Made some default theme progress
This commit is contained in:
parent
d8c01ded6e
commit
119dfc3ac7
27
MediaBrowser.UI/Configuration/UIApplicationConfiguration.cs
Normal file
27
MediaBrowser.UI/Configuration/UIApplicationConfiguration.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
using MediaBrowser.Model.Configuration;
|
||||
|
||||
namespace MediaBrowser.UI.Configuration
|
||||
{
|
||||
/// <summary>
|
||||
/// This is the UI's device configuration that applies regardless of which user is logged in.
|
||||
/// </summary>
|
||||
public class UIApplicationConfiguration : BaseApplicationConfiguration
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets or sets the server host name (myserver or 192.168.x.x)
|
||||
/// </summary>
|
||||
public string ServerHostName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the port number used by the API
|
||||
/// </summary>
|
||||
public int ServerApiPort { get; set; }
|
||||
|
||||
public UIApplicationConfiguration()
|
||||
: base()
|
||||
{
|
||||
ServerHostName = "localhost";
|
||||
ServerApiPort = 8096;
|
||||
}
|
||||
}
|
||||
}
|
||||
8
MediaBrowser.UI/Configuration/UIApplicationPaths.cs
Normal file
8
MediaBrowser.UI/Configuration/UIApplicationPaths.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
using MediaBrowser.Common.Kernel;
|
||||
|
||||
namespace MediaBrowser.UI.Configuration
|
||||
{
|
||||
public class UIApplicationPaths : BaseApplicationPaths
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user