File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
src/main/java/org/myteam/server Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ public String extractRefreshToken(HttpServletRequest request) {
8787 }
8888
8989 // 리프레시 토큰에서 액세스 토큰 추출
90- return jwtProvider . getAccessToken ( refresh ) ;
90+ return refresh ;
9191 }
9292
9393 @ Transactional
Original file line number Diff line number Diff line change @@ -149,7 +149,7 @@ public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Excepti
149149 .addFilter (webConfig .corsFilter ()); // CORS 필터 추가
150150
151151// // cors 설정
152- http .cors ((corsCustomizer ) -> corsCustomizer .configurationSource (configurationSource ()));
152+ // http.cors((corsCustomizer) -> corsCustomizer.configurationSource(configurationSource()));
153153
154154 // 예외 처리 핸들러 설정
155155 http .exceptionHandling (exceptionHandling -> exceptionHandling
You can’t perform that action at this time.
0 commit comments