passwordManagement
Enables password management.
Example:
@Configuration
@EnableWebFluxSecurity
class SecurityConfig {
@Bean
fun springWebFilterChain(http: ServerHttpSecurity): SecurityWebFilterChain {
return http {
passwordManagement {
changePasswordPage = "/custom-change-password-page"
}
}
}
}Content copied to clipboard
Since
5.6
Parameters
passwordManagementConfiguration
custom configuration to be applied to the password management