Skip to content

Commit d80ec5b

Browse files
authored
[refactor] 비밀번호 찾기 API Security 설정 허용 (#348)
1 parent 4eec2f5 commit d80ec5b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/back/global/security/config/SecurityConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Excepti
5555
// ========================================
5656

5757
// 인증/인가 - 회원가입, 로그인, 토큰 관련
58-
.requestMatchers("/api/auth/signup", "/api/auth/login", "/api/auth/refresh", "/api/auth/logout").permitAll()
58+
.requestMatchers("/api/auth/signup", "/api/auth/login", "/api/auth/refresh", "/api/auth/logout", "/api/auth/password/reset").permitAll()
5959

6060
// 중복 검증 - 이메일, 닉네임, 전화번호
6161
.requestMatchers("/api/auth/duplicate/**").permitAll()

0 commit comments

Comments
 (0)