Show avatar in account.ts controller

This commit is contained in:
Mathias Wagner
2024-07-21 15:22:35 +02:00
parent c5998f5e5f
commit 8839648dc8

View File

@ -73,5 +73,5 @@ export const getSimpleAccountObjectById = async (id: string) => {
const account = await Account.findById(id);
if (account === null) return {};
return {id: account._id, username: account.username, email: account.email};
return {id: account._id, username: account.username, email: account.email, avatar: generateAvatarUrl(account.email)};
}