We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92ac230 commit 7a27220Copy full SHA for 7a27220
src/main/java/io/github/patternatlas/api/config/ResourceServerConfig.java
@@ -31,11 +31,9 @@ class ResourceServerConfig extends ResourceServerConfigurerAdapter {
31
@Override
32
public void configure(HttpSecurity http) throws Exception {
33
http
34
- .requestMatchers()
35
- .antMatchers("/**")
36
- .and()
37
.authorizeRequests()
38
- .anyRequest().permitAll()
+ .antMatchers("/**")
+ .permitAll()
39
.and()
40
.sessionManagement()
41
.sessionCreationPolicy(SessionCreationPolicy.STATELESS);
0 commit comments