Adapt to Spring Security change
This commit is contained in:
parent
5649e8c92a
commit
edefacf7ac
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue