WORKERS AHEAD!
You are viewing the development documentation for the Apereo CAS server. The functionality presented here is not officially released yet. This is a work in progress and will be continually updated as development moves forward. You are most encouraged to test the changes presented.
Custom Passwordless Authentication Storage
You may also define your own user account store using the following
bean definition and by implementing PasswordlessUserAccountStore
:
1
2
3
4
@Bean
public PasswordlessUserAccountStore passwordlessUserAccountStore() {
...
}
See this guide to learn more about how to register configurations into the CAS runtime.