mirror of
https://github.com/bitwarden/server
synced 2025-12-20 18:23:44 +00:00
* captcha scores * some api fixes * check bot on captcha attribute * Update src/Core/Services/Implementations/HCaptchaValidationService.cs Co-authored-by: e271828- <e271828-@users.noreply.github.com> Co-authored-by: Chad Scharf <3904944+cscharf@users.noreply.github.com> Co-authored-by: e271828- <e271828-@users.noreply.github.com>
10 lines
212 B
C#
10 lines
212 B
C#
namespace Bit.Core.Models.Business
|
|
{
|
|
public class CaptchaResponse
|
|
{
|
|
public bool Success { get; set; }
|
|
public bool MaybeBot { get; set; }
|
|
public bool IsBot { get; set; }
|
|
}
|
|
}
|