Skip to content

Commit 56b6972

Browse files
committed
fix: 시큐리티 컨픽 불필요한 부분 삭제
1 parent 1e33e4a commit 56b6972

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/oronaminc/join/member/security/SecurityConfig.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
4747
"/ws/**"
4848
)
4949
.permitAll()
50-
.requestMatchers("/ws/**").permitAll()
51-
.anyRequest().authenticated()
50+
.anyRequest()
51+
.authenticated()
5252
)
5353
.formLogin(AbstractHttpConfigurer::disable)
5454
.oauth2Login(oauth2 -> oauth2.userInfoEndpoint(userInfo -> userInfo

0 commit comments

Comments
 (0)