summary refs log tree commit diff
path: root/src/routes/users/@me
diff options
context:
space:
mode:
authorBuildTools <59115290+BanTheNons@users.noreply.github.com>2021-08-05 21:00:56 +0300
committerBuildTools <59115290+BanTheNons@users.noreply.github.com>2021-08-05 21:00:56 +0300
commit1727c62317826436ad92cffafb4c8846ffa72770 (patch)
tree80b4bb4188e7fdaa65b11515ec551ac935e2f3fc /src/routes/users/@me
parentAdded the profile route (diff)
downloadserver-ts-1727c62317826436ad92cffafb4c8846ffa72770.tar.xz
Added the bot param
Diffstat (limited to 'src/routes/users/@me')
-rw-r--r--src/routes/users/@me/profile.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/routes/users/@me/profile.ts b/src/routes/users/@me/profile.ts

index 353607d4..366eb535 100644 --- a/src/routes/users/@me/profile.ts +++ b/src/routes/users/@me/profile.ts
@@ -17,6 +17,7 @@ router.get("/", async (req: Request, res: Response) => { public_flags: user.public_flags, avatar: user.avatar, bio: user.bio, + bot: user.bot, } }); });