1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-09-21 18:21:36 +02:00

Added accent_color

This commit is contained in:
BuildTools 2021-08-06 15:25:42 +03:00
parent 1727c62317
commit 974a6ccbd5
2 changed files with 2 additions and 0 deletions

View File

@ -16,6 +16,7 @@ router.get("/", async (req: Request, res: Response) => {
id: user.id,
public_flags: user.public_flags,
avatar: user.avatar,
accent_color: user.accent_color,
bio: req.user_bot ? null : user.bio,
bot: user.bot,
}

View File

@ -16,6 +16,7 @@ router.get("/", async (req: Request, res: Response) => {
id: user.id,
public_flags: user.public_flags,
avatar: user.avatar,
accent_color: user.accent_color,
bio: user.bio,
bot: user.bot,
}