Skip to content

Commit

Permalink
[FEAT] URL WHITELIST 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
paragon0107 committed Jul 12, 2024
1 parent 0f3040d commit 94b20e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/tiki/server/auth/config/SecurityConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
request
.requestMatchers("/api/v1/auth/login").permitAll()
.requestMatchers("/api/v1/auth/password").permitAll()
.requestMatchers("/api/v1/member/password").permitAll()
.requestMatchers("/api/v1/member").permitAll()
.requestMatchers("/api/v1/members/password").permitAll()
.requestMatchers("/api/v1/members").permitAll()
.anyRequest()
.authenticated())
.addFilter(corsConfig.corsFilter())
Expand Down

0 comments on commit 94b20e9

Please sign in to comment.