diff --git a/server/api/user.js b/server/api/user.js index 0272b3c55..0ab1d9a7c 100644 --- a/server/api/user.js +++ b/server/api/user.js @@ -27,7 +27,7 @@ router.post('user.update', auth(), async ctx => { await user.save(); - ctx.body = { data: await presentUser(ctx, user) }; + ctx.body = { data: await presentUser(ctx, user, { includeDetails: true }) }; }); router.post('user.s3Upload', auth(), async ctx => {