Skip to content

Commit

Permalink
fix: 회원가입 security 해제
Browse files Browse the repository at this point in the history
  • Loading branch information
goathoon committed Oct 11, 2023
1 parent 757366d commit 9db0be2
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/main/java/Funssion/Inforum/config/SecurityConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ public SecurityFilterChain filterChain(HttpSecurity httpSecurity) throws Excepti
.authorizeHttpRequests((authorizeRequests) ->
authorizeRequests
.requestMatchers(HttpMethod.OPTIONS, "/**/*").permitAll()
.requestMatchers(HttpMethod.POST,"/users").permitAll()
//users 포함한 end point 보안 적용 X
.requestMatchers(HttpMethod.GET,"/users/**").permitAll()
.requestMatchers("/users/authenticate-email",
Expand Down

0 comments on commit 9db0be2

Please sign in to comment.