You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
WebAuthnDsl is implemented incorrectly, we need to change the implementation of the get() method according to the usual spring security template, as in other kotlin DSLs. Now, due to incorrect implementation, the default configuration will not work.
@Bean
open fun securityFilterChain(http: HttpSecurity): SecurityFilterChain {
http{
formLogin { }
webAuthn { }
}
return http.build()
}
In addition, the DSL is missing disableDefaultRegistrationPage.
The text was updated successfully, but these errors were encountered:
WebAuthnDsl
is implemented incorrectly, we need to change the implementation of theget()
method according to the usual spring security template, as in other kotlin DSLs. Now, due to incorrect implementation, the default configuration will not work.In addition, the DSL is missing
disableDefaultRegistrationPage
.The text was updated successfully, but these errors were encountered: