fixed members login and permissions issues

This commit is contained in:
2026-02-23 00:57:34 +00:00
parent ed0debfeac
commit 97da2e2736
42 changed files with 574 additions and 113 deletions
+1 -1
View File
@@ -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;
};