File tree Expand file tree Collapse file tree 2 files changed +0
-3
lines changed
src/main/java/org/tuna/zoopzoop/backend Expand file tree Collapse file tree 2 files changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -130,7 +130,6 @@ public ResponseEntity<RsData<Void>> refreshToken(
130130 */
131131 @ GetMapping ("/result" )
132132 @ Operation (summary = "확장프로그램 백그라운드 풀링 대응 API" )
133- @ CrossOrigin (origins = "*" )
134133 public ResponseEntity <RsData <AuthResultData >> pullingResult (
135134 @ RequestParam String state
136135 ) {
Original file line number Diff line number Diff line change 33import lombok .RequiredArgsConstructor ;
44import org .springframework .context .annotation .Bean ;
55import org .springframework .context .annotation .Configuration ;
6- import org .springframework .http .HttpMethod ;
76import org .springframework .security .config .annotation .web .builders .HttpSecurity ;
87import org .springframework .security .oauth2 .client .registration .ClientRegistrationRepository ;
98import org .springframework .security .web .SecurityFilterChain ;
@@ -33,7 +32,6 @@ public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Excepti
3332
3433 // 모든 요청 허용
3534 .authorizeHttpRequests (auth -> auth
36- .requestMatchers (HttpMethod .OPTIONS , "/**" ).permitAll ()
3735 .requestMatchers ("/api/v1/member" , "/api/v1/member/**" ).authenticated ()
3836 .requestMatchers (
3937 "/" ,
You can’t perform that action at this time.
0 commit comments