chore: update list users

This commit is contained in:
Steven
2023-12-23 08:35:54 +08:00
parent c267074851
commit df3303dcd3
11 changed files with 759 additions and 451 deletions

View File

@ -44,10 +44,6 @@ export function signout() {
return axios.post("/api/v1/auth/signout");
}
export function getUserList() {
return axios.get<User[]>("/api/v1/user");
}
export function getMemoStats(username: string) {
return axios.get<number[]>(`/api/v1/memo/stats?creatorUsername=${username}`);
}