feat: 계정정보에 회원 탈퇴 — 2단계 확인 후 계정·데이터 삭제
CI / build (push) Failing after 11m31s

- authApi.withdraw(), 강한 경고 + 2차 확인 → DELETE /auth/me → 세션 정리·홈 이동

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
ByungCheol
2026-06-28 16:59:25 +09:00
parent d7639225f7
commit d243600f41
2 changed files with 54 additions and 0 deletions
+4
View File
@@ -51,4 +51,8 @@ export const authApi = {
profile() {
return http.get('/auth/profile')
},
// 회원 탈퇴 — 계정·데이터 전체 삭제
withdraw() {
return http.delete('/auth/me')
},
}