fixed members login and permissions issues
This commit is contained in:
@@ -4,7 +4,7 @@ export type SignupUserForm = {
|
||||
password?: string;
|
||||
};
|
||||
|
||||
export type UpdateUserPayload = { name: string; avatar: string };
|
||||
export type UpdateUserPayload = { name: string; username?: string; avatar: string };
|
||||
|
||||
export type ResetPasswordPayload = { password: string; verificationCode: string };
|
||||
|
||||
|
||||
@@ -130,6 +130,7 @@ export type SignupUserForm = {
|
||||
|
||||
export type UpdateUserPayload = {
|
||||
name: string;
|
||||
username?: string;
|
||||
avatar: string;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user