diff --git a/src/Api/Models/Request/AuthRequestRequestModel.cs b/src/Api/Models/Request/AuthRequestRequestModel.cs index 8dab8036b..51629d2e1 100644 --- a/src/Api/Models/Request/AuthRequestRequestModel.cs +++ b/src/Api/Models/Request/AuthRequestRequestModel.cs @@ -17,7 +17,6 @@ public class AuthRequestCreateRequestModel public string AccessCode { get; set; } [Required] public AuthRequestType? Type { get; set; } - [Required] public string FingerprintPhrase { get; set; } } diff --git a/test/Infrastructure.EFIntegration.Test/Repositories/EqualityComparers/AuthRequestCompare.cs b/test/Infrastructure.EFIntegration.Test/Repositories/EqualityComparers/AuthRequestCompare.cs index bbe2b14e8..c881662db 100644 --- a/test/Infrastructure.EFIntegration.Test/Repositories/EqualityComparers/AuthRequestCompare.cs +++ b/test/Infrastructure.EFIntegration.Test/Repositories/EqualityComparers/AuthRequestCompare.cs @@ -12,8 +12,7 @@ public class AuthRequestCompare : IEqualityComparer x.PublicKey == y.PublicKey && x.RequestDeviceIdentifier == y.RequestDeviceIdentifier && x.RequestDeviceType == y.RequestDeviceType && - x.RequestIpAddress == y.RequestIpAddress && - x.RequestFingerprint == y.RequestFingerprint; + x.RequestIpAddress == y.RequestIpAddress; } public int GetHashCode([DisallowNull] AuthRequest obj)