chore: clean server

This commit is contained in:
email
2022-03-29 00:01:34 +08:00
parent 3c06c68691
commit 8f76120e4e
7 changed files with 21 additions and 51 deletions

View File

@ -113,14 +113,14 @@ namespace api {
export function getMyMemos() {
return request<Model.Memo[]>({
method: "GET",
url: "/api/memo",
url: "/api/memo?rowStatus=NORMAL",
});
}
export function getMyDeletedMemos() {
return request<Model.Memo[]>({
method: "GET",
url: "/api/memo?hidden=true",
url: "/api/memo?rowStatus=HIDDEN",
});
}