diff --git a/backend/internal/service/webauthn_service.go b/backend/internal/service/webauthn_service.go index 50dd3c62..f12675a8 100644 --- a/backend/internal/service/webauthn_service.go +++ b/backend/internal/service/webauthn_service.go @@ -29,6 +29,9 @@ func NewWebAuthnService(db *gorm.DB, jwtService *JwtService, auditLogService *Au RPDisplayName: appConfigService.GetDbConfig().AppName.Value, RPID: utils.GetHostnameFromURL(common.EnvConfig.AppURL), RPOrigins: []string{common.EnvConfig.AppURL}, + AuthenticatorSelection: protocol.AuthenticatorSelection{ + UserVerification: protocol.VerificationRequired, + }, Timeouts: webauthn.TimeoutsConfig{ Login: webauthn.TimeoutConfig{ Enforce: true,