merge: branch 'izzy/patch/easypwned'

fix: configure new authifier properties
This commit is contained in:
izzy
2025-05-10 16:31:37 +01:00
parent 6daa8223b2
commit 3a7ebad883
7 changed files with 38 additions and 26 deletions

View File

@@ -54,6 +54,8 @@ authifier_shield_key = ""
voso_legacy_token = ""
# Whether services are behind the Cloudflare network
trust_cloudflare = false
# easypwned endpoint
easypwned = ""
[api.security.captcha]
# hCaptcha configuration

View File

@@ -168,6 +168,7 @@ pub struct ApiSecurity {
pub voso_legacy_token: String,
pub captcha: ApiSecurityCaptcha,
pub trust_cloudflare: bool,
pub easypwned: String,
}
#[derive(Deserialize, Debug, Clone)]