feat: add member list in setting

This commit is contained in:
Steven
2023-07-09 00:45:26 +08:00
parent c00f7d0852
commit 5db3506cba
26 changed files with 614 additions and 238 deletions

View File

@ -14,6 +14,13 @@ interface User {
role: Role;
}
interface UserCreate {
email: string;
nickname: string;
password: string;
role: Role;
}
interface UserPatch {
id: UserId;
@ -21,6 +28,7 @@ interface UserPatch {
email?: string;
nickname?: string;
password?: string;
role?: Role;
}
interface UserDelete {