Skip to content

Commit 2c77198

Browse files
committed
fix: 테스트용 인증/인가 url 허용
1 parent 23fa67c commit 2c77198

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/main/java/com/example/log4u/common/config/SecurityConfig.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
7373
// 소셜 로그인 경로
7474
.requestMatchers("/oauth2/**").permitAll()
7575
// Swagger UI 관련 경로 (swagger-ui.html 추가)
76+
.requestMatchers("users/dev").permitAll()
7677
.requestMatchers("/swagger-ui.html", "/swagger-ui/**", "/v3/api-docs/**").permitAll()
7778
.anyRequest().authenticated());
7879

0 commit comments

Comments
 (0)