Skip to content

Commit

Permalink
Merge pull request #41 from 9oormthon-univ/hyundong
Browse files Browse the repository at this point in the history
fix :: swagger permitAll 설정
  • Loading branch information
hyundong-L authored Nov 26, 2024
2 parents fe1c17a + 21257c2 commit d150a60
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public SecurityFilterChain filterChain(HttpSecurity http, CorsConfigurationSourc
.authorizeHttpRequests((authorizeRequests) ->
authorizeRequests
.requestMatchers(HttpMethod.OPTIONS, "/**").permitAll()
.requestMatchers("/api/auth/**").permitAll()
.requestMatchers("/api/auth/**", "/swagger-ui/**").permitAll()
.anyRequest().authenticated()
)

Expand Down

0 comments on commit d150a60

Please sign in to comment.