From 6e0685d5e9e8a06e2559057a5776593c3fdce422 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Allard?= Date: Tue, 24 Sep 2024 10:31:58 +0200 Subject: [PATCH] Update README.md, replace AuthenticatorService with CredentialRecordService --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index fdf4434a9..03b9a4a67 100644 --- a/README.md +++ b/README.md @@ -76,8 +76,8 @@ WebAuthn4J Spring Security can be configured through Spring Security Java Config public class WebSecurityConfig { @Bean - public WebAuthnAuthenticationProvider webAuthnAuthenticationProvider(WebAuthnAuthenticatorService authenticatorService, WebAuthnManager webAuthnManager){ - return new WebAuthnAuthenticationProvider(authenticatorService, webAuthnManager); + public WebAuthnAuthenticationProvider webAuthnAuthenticationProvider(WebAuthnCredentialRecordService webAuthnCredentialRecordService, WebAuthnManager webAuthnManager){ + return new WebAuthnAuthenticationProvider(webAuthnCredentialRecordService, webAuthnManager); } @Bean