Kavita/API/Entities/Enums/ServerSettingKey.cs
Joseph Milazzo 27aaa040c4
Base Url Support (#642)
* Added base url config

* UI side is not working

* Working base url more

* Attempt to get UI to work with base url

* Implemented the ability to set the Base URL for the app

* Hooked in Base URL as a managed setting

* Ensure we always start with / for base url

* Removed default base href from debug builds. Cleaned up an issue with base url migration.

* Fixed an issue with our BaseURL migration
2021-10-06 05:42:02 -07:00

30 lines
749 B
C#

using System.ComponentModel;
namespace API.Entities.Enums
{
public enum ServerSettingKey
{
[Description("TaskScan")]
TaskScan = 0,
[Description("CacheDirectory")]
CacheDirectory = 1,
[Description("TaskBackup")]
TaskBackup = 2,
[Description("LoggingLevel")]
LoggingLevel = 3,
[Description("Port")]
Port = 4,
[Description("BackupDirectory")]
BackupDirectory = 5,
[Description("AllowStatCollection")]
AllowStatCollection = 6,
[Description("EnableOpds")]
EnableOpds = 7,
[Description("EnableAuthentication")]
EnableAuthentication = 8,
[Description("BaseUrl")]
BaseUrl = 9
}
}