Skip to content

Commit

Permalink
Merge pull request #100 from Chat-ITC/main
Browse files Browse the repository at this point in the history
fix: /member/delete 허용 로직 구현
  • Loading branch information
YongGoose authored Sep 22, 2023
2 parents aa5ccbd + e709626 commit 860ed8e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
.authorizeRequests()
// permitAll -> 인증과 인가를 거치지 않고 모든 사용자에게 접근 권한을 부여한다.
.antMatchers("/kakao/callback", "/naver/callback", "/member/signup",
"/hello","/member/refreshToken", "/language/**", "/question/**","/api/swagger-ui/**").permitAll()
"/hello","/member/refreshToken", "/language/**", "/question/**","/api/swagger-ui/**","/member/delete/**").permitAll()
//permitAll로 적용된 URL 이외의 모든 요청은 인증된 사용자만이 접근할 수 있게 설정됩니다.
.anyRequest().authenticated();
/*
Expand Down

0 comments on commit 860ed8e

Please sign in to comment.