Skip to content

Commit

Permalink
Merge pull request #157 from Dev-Race/test/#152
Browse files Browse the repository at this point in the history
[#152] Test: signup API 권한 해제 테스트
  • Loading branch information
tkguswls1106 authored Jun 13, 2024
2 parents 11ed8da + b02f946 commit c498009
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
.requestMatchers(HttpMethod.OPTIONS, "/**").permitAll()

.requestMatchers("/", "/error", "/favicon.ico", "/v3/api-docs/**", "/swagger-ui/**", "/swagger/**", "/health").permitAll()
.requestMatchers("/ws/**", "/oauth2/**", "/reissue").permitAll();
.requestMatchers("/ws/**", "/oauth2/**", "/reissue", "/signup").permitAll();
// .requestMatchers("/**").permitAll() // Test 용도
})

Expand Down

0 comments on commit c498009

Please sign in to comment.