1
0
mirror of https://github.com/bitwarden/server synced 2025-12-15 07:43:54 +00:00

Protect user registration with captcha (#1480)

* Protect user registration with captcha

* PR feedback
This commit is contained in:
Matt Gibson
2021-07-22 12:29:06 -05:00
committed by GitHub
parent 46fa6f6673
commit 7a135ae7cd
9 changed files with 64 additions and 13 deletions

View File

@@ -473,7 +473,7 @@ namespace Bit.Core.Settings
public class CaptchaSettings
{
public bool RequireCaptcha { get; set; } = false;
public bool ForceCaptchaRequired { get; set; } = false;
public string HCaptchaSecretKey { get; set; }
public string HCaptchaSiteKey { get; set; }
}