mirror of
https://github.com/bitwarden/server.git
synced 2024-11-25 12:45:18 +01:00
dont check dots for duo
This commit is contained in:
parent
951e8f562e
commit
73a2fa27ee
@ -103,7 +103,7 @@ namespace Bit.Core.Models.Api
|
||||
|
||||
public IEnumerable<ValidationResult> Validate(ValidationContext validationContext)
|
||||
{
|
||||
if(!Host.StartsWith("api-") || !Host.EndsWith(".duosecurity.com") || Host.Count(s => s == '.') != 2)
|
||||
if(!Host.StartsWith("api-") || !Host.EndsWith(".duosecurity.com"))
|
||||
{
|
||||
yield return new ValidationResult("Host is invalid.", new string[] { nameof(Host) });
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user