Skip to content

Commit

Permalink
Fix: 로그인 리다이렉트 오류 수정 (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
sieunnnn committed Nov 11, 2023
1 parent b03eb2a commit 2544102
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Excepti
.requestMatchers(PathRequest.toStaticResources().atCommonLocations()).permitAll()
.requestMatchers(HttpMethod.OPTIONS, "/**").permitAll()
.requestMatchers("/swagger-ui/**", "/v3/**", "/favicon.ico").permitAll()
.requestMatchers("/api/auth/**", "/api/oauth/**").permitAll()
.requestMatchers("/api/auth/**", "/api/oauth/**", "/login/**").permitAll()
.anyRequest().authenticated();

http .oauth2Login()
Expand Down

0 comments on commit 2544102

Please sign in to comment.