Commit edefacf7 authored by Stephane Nicoll's avatar Stephane Nicoll

Adapt to Spring Security change

parent 5649e8c9
...@@ -49,7 +49,7 @@ class OAuth2WebSecurityConfiguration { ...@@ -49,7 +49,7 @@ class OAuth2WebSecurityConfiguration {
@Override @Override
protected void configure(HttpSecurity http) throws Exception { protected void configure(HttpSecurity http) throws Exception {
http.authorizeRequests().anyRequest().authenticated().and().oauth2Login() http.authorizeRequests().anyRequest().authenticated().and().oauth2Login()
.clients(this.clientRegistrationRepository); .clientRegistrationRepository(this.clientRegistrationRepository);
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment