mirror of
https://github.com/aykhans/slash-e.git
synced 2025-07-07 13:42:34 +00:00
feat: add member list in setting
This commit is contained in:
8
web/src/types/modules/user.d.ts
vendored
8
web/src/types/modules/user.d.ts
vendored
@ -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 {
|
||||
|
Reference in New Issue
Block a user