mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-11-04 19:43:06 -05:00
* Implemented the ability to disable authentication on a server instance. Admins will require authentication, but non-admin accounts can be setup without any password requirements. * WIP for new login page. * Reworked code to handle disabled auth better. First time user flow is moved into the user login component. * Removed debug code * Removed home component, shakeout testing is complete. * remove a file accidently committed * Fixed a code smell from last PR * Code smells
28 lines
695 B
C#
28 lines
695 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
|
|
|
|
}
|
|
}
|