임시 비밀번호 발급 문자 수정 및 비밀번호 초기화 오류 수정

This commit is contained in:
kubo8
2022-10-17 17:17:02 +09:00
parent 4b8f8beff9
commit 26c5b1fb8c
2 changed files with 8 additions and 4 deletions

View File

@@ -63,6 +63,11 @@ const updateAuth = (params) => {
return httpClient.post('/api/v1/bo/sysMgt/updateAuth', params, { withCredentials: false });
}
// 비밀번호 초기화
const resetPassword = (params) => {
return httpClient.post('/api/v1/bo/login/resetPassword', params, { withCredentials: false });
}
export default {
insertAdmin,
updateAdmin,
@@ -77,5 +82,5 @@ export default {
authDetail,
insertAuth,
updateAuth,
resetPassword
}