Skip to content

Commit

Permalink
fix: api 접근 권한
Browse files Browse the repository at this point in the history
  • Loading branch information
rlaisqls committed Oct 10, 2023
1 parent 2e0a496 commit 74aa9fd
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,7 @@ class SecurityConfig(
.sessionCreationPolicy(SessionCreationPolicy.STATELESS)
http
.authorizeRequests()
.antMatchers(HttpMethod.POST, "/user").permitAll()
.antMatchers(HttpMethod.POST, "/user/auth").permitAll()
.anyRequest().authenticated()
.anyRequest().permitAll()

http
.apply(FilterConfig(jwtParser, objectMapper))
Expand Down

0 comments on commit 74aa9fd

Please sign in to comment.