-
Notifications
You must be signed in to change notification settings - Fork 6.1k
Closed
Labels
in: configAn issue in spring-security-configAn issue in spring-security-configtype: bugA general bugA general bug
Milestone
Description
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
.
Metadata
Metadata
Assignees
Labels
in: configAn issue in spring-security-configAn issue in spring-security-configtype: bugA general bugA general bug