feat: hecho tema de imagenes en perfil

> mamita como renegue
- arreglado modificar usuarios admin
- añadido subir pfp
This commit is contained in:
2025-12-08 20:52:58 -03:00
parent 5c388cfb12
commit 84106abd3d
12 changed files with 224 additions and 105 deletions

9
src/types.d.ts vendored
View File

@@ -84,9 +84,18 @@ export interface UserResponseDto {
displayName: string;
email: string;
bio: string;
imageUrl: string?;
profileImageUrl: string;
followersCount: number;
followingCount: number;
createdAt: string;
postsCount: number;
}
export interface UpdateUserRequest {
username: string?;
displayName: string?;
bio: string?;
email: string?;
profileImage: File?;
}