diff options
author | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2022-04-23 01:07:59 +1000 |
---|---|---|
committer | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2022-04-23 01:07:59 +1000 |
commit | 5c27b523341346a8317beae5b3c8b9460cedb23a (patch) | |
tree | 83fee3e4eb5547551fea562b6a0eaeec9593f0b3 /api/src/routes/users/@me | |
parent | Update UserGroup.ts (diff) | |
download | server-5c27b523341346a8317beae5b3c8b9460cedb23a.tar.xz |
Fixed ability for user to edit any property of themselves, including `rights`, `flags`. Note to self: schemas.json is a GENERATED file. `npm run generate:schema` in api/
Diffstat (limited to 'api/src/routes/users/@me')
-rw-r--r-- | api/src/routes/users/@me/index.ts | 3 |
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..c86189a0 100644 --- a/api/src/routes/users/@me/index.ts +++ b/api/src/routes/users/@me/index.ts @@ -34,6 +34,7 @@ router.patch("/", route({ body: "UserModifySchema" }), async (req: Request, res: if (body.banner) body.banner = await handleFile(`/banners/${req.user_id}`, body.banner as string); const user = await User.findOneOrFail({ where: { id: req.user_id }, select: [...PrivateUserProjection, "data"] }); + user.assign(body); if (body.password) { if (user.data?.hash) { @@ -46,8 +47,6 @@ router.patch("/", route({ body: "UserModifySchema" }), async (req: Request, res: } } - user.assign(body); - if (body.new_password) { if (!body.password && !user.email) { throw FieldErrors({ |