Skip to content

Commit

Permalink
[Fix] 소셜 로그인 API 개방
Browse files Browse the repository at this point in the history
  • Loading branch information
82everywin committed Jan 28, 2025
1 parent e3677bb commit e9f03f3
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
.authorizeHttpRequests((auth) -> auth
.requestMatchers("/swagger-ui/**","swagger-ui/index.html#/","/v3/api-docs/**", "/swagger-resources/**").permitAll()
.requestMatchers("/api/v1/users/sign-up", "/api/v1/users/sign-in","/api/v1/users/reissue").permitAll()
.requestMatchers("/api/v1/oauth2/test").permitAll()
.requestMatchers("/api/v1/users/test/**").permitAll()
.requestMatchers( "/oauth2/**").permitAll()
.anyRequest().authenticated())
Expand Down

0 comments on commit e9f03f3

Please sign in to comment.