Add bio management feature with UI and backend support

This commit is contained in:
2025-05-17 21:34:16 +08:00
parent 864632e682
commit 38999d844d
8 changed files with 136 additions and 8 deletions

View File

@@ -7,6 +7,7 @@ export interface User {
can_upload: boolean;
uploads_count: number;
comments_count: number;
bio: string;
}
export interface UserWithToken extends User {