mirror of
https://github.com/bitwarden/server
synced 2025-12-14 07:13:39 +00:00
* [Hacker1] Failed Login Attempts Captcha * [Captcha] Implement failed logins ceiling * Formatting * Updated approach after implementation talks with Kyle * Updated email templates // Updated calling arch for failed attempts * Formatting * Updated 2fa email links * Renamed baserequest methods to better match their actions * EF migrations/scripts * Updated with requested changes * Defaults for MaxiumumFailedLoginAttempts
8 lines
166 B
C#
8 lines
166 B
C#
namespace Bit.Core.Models.Mail
|
|
{
|
|
public class FailedAuthAttemptsModel : NewDeviceLoggedInModel
|
|
{
|
|
public string AffectedEmail { get; set; }
|
|
}
|
|
}
|