summary refs log tree commit diff
path: root/api/src/routes/users/@me
diff options
context:
space:
mode:
authorTheArcaneBrony <myrainbowdash949@gmail.com>2022-04-22 18:12:18 +0200
committerGitHub <noreply@github.com>2022-04-22 18:12:18 +0200
commit3491d01dca9917a9860ee77163fbed4ea6ef3d94 (patch)
tree9eabeea3b7bc6138365f642578ffbbb9c87b3c80 /api/src/routes/users/@me
parentUpdate UserGroup.ts (diff)
parentFix not assigning new changes to input fields in users/@me (diff)
downloadserver-3491d01dca9917a9860ee77163fbed4ea6ef3d94.tar.xz
Merge pull request #734 from MaddyUnderStars/fix/sanitisation
Fix users arbitrarily editing their own User object, and disallow sending messages to certain channels ( eg categories )
Diffstat (limited to 'api/src/routes/users/@me')
-rw-r--r--api/src/routes/users/@me/index.ts3
1 files changed, 1 insertions, 2 deletions
diff --git a/api/src/routes/users/@me/index.ts b/api/src/routes/users/@me/index.ts

index d32b44f9..1af413c4 100644 --- a/api/src/routes/users/@me/index.ts +++ b/api/src/routes/users/@me/index.ts
@@ -46,8 +46,6 @@ router.patch("/", route({ body: "UserModifySchema" }), async (req: Request, res: } } - user.assign(body); - if (body.new_password) { if (!body.password && !user.email) { throw FieldErrors({ @@ -66,6 +64,7 @@ router.patch("/", route({ body: "UserModifySchema" }), async (req: Request, res: } } + user.assign(body); await user.save(); // @ts-ignore