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 1e33e4a commit 56b6972Copy full SHA for 56b6972
src/main/java/com/oronaminc/join/member/security/SecurityConfig.java
@@ -47,8 +47,8 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
47
"/ws/**"
48
)
49
.permitAll()
50
- .requestMatchers("/ws/**").permitAll()
51
- .anyRequest().authenticated()
+ .anyRequest()
+ .authenticated()
52
53
.formLogin(AbstractHttpConfigurer::disable)
54
.oauth2Login(oauth2 -> oauth2.userInfoEndpoint(userInfo -> userInfo
0 commit comments