Skip to content

Commit

Permalink
refactor : oauth login path permission (#112)
Browse files Browse the repository at this point in the history
  • Loading branch information
binary-ho committed Mar 11, 2024
1 parent 43a3fcd commit e17b1f9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
)

.authorizeRequests()
.antMatchers("/login", "/logout", "/member/**",
.antMatchers("/login/**", "/logout", "/member/**",
"/swagger*/**", "/v3/api-docs/**", "/swagger-resources/**", "/webjars/**")
.permitAll()

Expand Down

0 comments on commit e17b1f9

Please sign in to comment.