Merge fix(비번초기화): 키 불일치 + 입력값 무시 픽스
Build & Deploy to K8s / build-and-deploy (push) Failing after 11m15s
Build & Deploy to K8s / build-and-deploy (push) Failing after 11m15s
This commit is contained in:
@@ -199,7 +199,10 @@ export async function getUserHistory(userId: string, params?: Record<string, any
|
||||
* 사용자 비밀번호 초기화
|
||||
*/
|
||||
export async function resetUserPassword(resetData: { userId: string; newPassword: string }) {
|
||||
const response = await apiClient.post("/admin/users/reset-password", resetData);
|
||||
const response = await apiClient.post("/admin/users/reset-password", {
|
||||
user_id: resetData.userId,
|
||||
new_password: resetData.newPassword,
|
||||
});
|
||||
|
||||
return response.data;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user