refactored how avatars are being handled

This commit is contained in:
daniel31x13
2023-10-28 00:45:14 -04:00
parent f9eedadb9f
commit cdcfabec0b
21 changed files with 55 additions and 85 deletions
+1 -2
View File
@@ -35,7 +35,6 @@ export interface CollectionIncludingMembersAndLinkCount
}
export interface AccountSettings extends User {
profilePic: string;
newPassword?: string;
whitelistedUsers: string[];
}
@@ -79,7 +78,7 @@ interface CollectionIncludingLinks extends Collection {
links: LinksIncludingTags[];
}
export interface Backup extends Omit<User, "password" | "id" | "image"> {
export interface Backup extends Omit<User, "password" | "id"> {
collections: CollectionIncludingLinks[];
}