chore: add user detail page

This commit is contained in:
Steven
2022-09-13 20:57:15 +08:00
parent 90639322b7
commit 156218b40f
14 changed files with 76 additions and 200 deletions

View File

@ -9,6 +9,7 @@ interface User {
email: string;
name: string;
openId: string;
}
interface UserCreate {
@ -24,6 +25,7 @@ interface UserPatch {
name?: string;
password?: string;
resetOpenID?: boolean;
}
interface UserDelete {