비밀번호 변경 기능 구현

This commit is contained in:
dohyeons
2025-08-26 13:42:57 +09:00
parent 9ff797ba89
commit 6f68fa5639
5 changed files with 306 additions and 10 deletions

View File

@@ -11,6 +11,7 @@ import {
getUserInfo, // 사용자 상세 조회
getUserHistory, // 사용자 변경이력 조회
changeUserStatus, // 사용자 상태 변경
resetUserPassword, // 사용자 비밀번호 초기화
getDepartmentList, // 부서 목록 조회
checkDuplicateUserId, // 사용자 ID 중복 체크
saveUser, // 사용자 등록/수정
@@ -45,6 +46,7 @@ router.get("/users/:userId/history", getUserHistory); // 사용자 변경이력
router.patch("/users/:userId/status", changeUserStatus); // 사용자 상태 변경
router.post("/users", saveUser); // 사용자 등록/수정
router.post("/users/check-duplicate", checkDuplicateUserId); // 사용자 ID 중복 체크
router.post("/users/reset-password", resetUserPassword); // 사용자 비밀번호 초기화
// 부서 관리 API
router.get("/departments", getDepartmentList); // 부서 목록 조회