Skip to content

Commit 7a42f6a

Browse files
committed
fix: 테스트용 인증/인가 url 오류 수정
1 parent 2c77198 commit 7a42f6a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +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()
76+
.requestMatchers("/users/dev").permitAll()
7777
.requestMatchers("/swagger-ui.html", "/swagger-ui/**", "/v3/api-docs/**").permitAll()
7878
.anyRequest().authenticated());
7979

0 commit comments

Comments
 (0)