Added support for custom UI folder

This commit is contained in:
Keivan Beigi 2015-07-21 19:42:38 -07:00
parent 760469fc5f
commit 98acd0d886
17 changed files with 192 additions and 131 deletions

View file

@ -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); }