chore: migrate delete user

This commit is contained in:
Steven
2023-11-22 22:52:19 +08:00
parent b1128fc786
commit c0b5070e46
9 changed files with 532 additions and 186 deletions

View File

@ -64,10 +64,6 @@ export function patchUser(userPatch: UserPatch) {
return axios.patch<User>(`/api/v1/user/${userPatch.id}`, userPatch);
}
export function deleteUser(userDelete: UserDelete) {
return axios.delete(`/api/v1/user/${userDelete.id}`);
}
export function getAllMemos(memoFind?: MemoFind) {
const queryList = [];
if (memoFind?.offset) {