mirror of
https://github.com/bitwarden/server
synced 2026-01-08 03:23:20 +00:00
hcaptcha validation on password login (#1398)
This commit is contained in:
10
src/Core/Services/ICaptchaValidationService.cs
Normal file
10
src/Core/Services/ICaptchaValidationService.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Bit.Core.Services
|
||||
{
|
||||
public interface ICaptchaValidationService
|
||||
{
|
||||
bool ServiceEnabled { get; }
|
||||
Task<bool> ValidateCaptchaResponseAsync(string captchResponse, string clientIpAddress);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user