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 23fa67c commit 2c77198Copy full SHA for 2c77198
src/main/java/com/example/log4u/common/config/SecurityConfig.java
@@ -73,6 +73,7 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
73
// 소셜 로그인 경로
74
.requestMatchers("/oauth2/**").permitAll()
75
// Swagger UI 관련 경로 (swagger-ui.html 추가)
76
+ .requestMatchers("users/dev").permitAll()
77
.requestMatchers("/swagger-ui.html", "/swagger-ui/**", "/v3/api-docs/**").permitAll()
78
.anyRequest().authenticated());
79
0 commit comments