Skip to content

Commit e2c8512

Browse files
committed
♻️ Refactor: 토큰 재발행 API 경로 인가 설정 제거
1 parent f3c92be commit e2c8512

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/main/java/cloudcomputinginha/demo/config/auth/SecurityConfig.java

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,11 @@ public CorsConfiguration getCorsConfiguration(HttpServletRequest request) {
7373

7474
//경로별 인가 작업
7575
.authorizeHttpRequests((auth) -> auth
76-
.requestMatchers("/auth/GOOGLE", "/auth/google/callback").permitAll()
77-
.requestMatchers("/v3/api-docs/**",
76+
.requestMatchers(
77+
"/auth/GOOGLE",
78+
"/auth/google/callback",
79+
"/auth/reissue",
80+
"/v3/api-docs/**",
7881
"/swagger-ui/**",
7982
"/swagger-resources/**",
8083
"/notifications/feedback"

0 commit comments

Comments
 (0)