You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Ombi/src/Ombi.Settings/Settings/Models/AuthenticationSettings.cs

20 lines
748 B

using System.Collections.Generic;
namespace Ombi.Settings.Settings.Models
{
public class AuthenticationSettings : Settings
{
public bool AllowNoPassword { get; set; }
// Password Options
public bool RequireDigit { get; set; }
public int RequiredLength { get; set; }
public bool RequireLowercase { get; set; }
public bool RequireNonAlphanumeric { get; set; }
public bool RequireUppercase { get; set; }
public bool EnableOAuth { get; set; } // Plex OAuth
public bool EnableHeaderAuth { get; set; } // Header SSO
public string HeaderAuthVariable { get; set; } // Header SSO
public bool HeaderAuthCreateUser { get; set; } // Header SSO
}
}