mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-16 10:03:51 -07:00
Added support for custom UI folder
This commit is contained in:
parent
760469fc5f
commit
98acd0d886
17 changed files with 192 additions and 131 deletions
|
@ -37,6 +37,7 @@ namespace NzbDrone.Core.Configuration
|
|||
string ApiKey { get; }
|
||||
string SslCertHash { get; }
|
||||
string UrlBase { get; }
|
||||
string UiFolder { get; }
|
||||
Boolean UpdateAutomatically { get; }
|
||||
UpdateMechanism UpdateMechanism { get; }
|
||||
String UpdateScriptPath { get; }
|
||||
|
@ -215,6 +216,14 @@ namespace NzbDrone.Core.Configuration
|
|||
}
|
||||
}
|
||||
|
||||
public string UiFolder
|
||||
{
|
||||
get
|
||||
{
|
||||
return GetValue("UiFolder", "UI", false);
|
||||
}
|
||||
}
|
||||
|
||||
public bool UpdateAutomatically
|
||||
{
|
||||
get { return GetValueBoolean("UpdateAutomatically", false, false); }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue