Implemented Settings in Model

This commit is contained in:
Francesco Servida 2022-02-15 23:27:02 +01:00
commit 5ddda3c39e
No known key found for this signature in database
GPG key ID: 653390DF958E310B

View file

@ -13,5 +13,8 @@ namespace Ombi.Settings.Settings.Models
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
}
}