Cleanup
This commit is contained in:
@ -324,11 +324,9 @@ router.post('documents.revisions', auth(), pagination(), async ctx => {
|
||||
limit: ctx.state.pagination.limit,
|
||||
});
|
||||
|
||||
const data = await Promise.all(revisions.map(presentRevision));
|
||||
|
||||
ctx.body = {
|
||||
pagination: ctx.state.pagination,
|
||||
data,
|
||||
data: revisions.map(presentRevision)
|
||||
};
|
||||
});
|
||||
|
||||
|
@ -22,11 +22,9 @@ router.post('integrations.list', auth(), pagination(), async ctx => {
|
||||
limit: ctx.state.pagination.limit,
|
||||
});
|
||||
|
||||
const data = await Promise.all(integrations.map(presentIntegration));
|
||||
|
||||
ctx.body = {
|
||||
pagination: ctx.state.pagination,
|
||||
data,
|
||||
data: integrations.map(presentIntegration),
|
||||
};
|
||||
});
|
||||
|
||||
|
@ -33,7 +33,9 @@ router.post('users.list', auth(), pagination(), async ctx => {
|
||||
});
|
||||
|
||||
router.post('users.info', auth(), async ctx => {
|
||||
ctx.body = { data: await presentUser(ctx.state.user) };
|
||||
ctx.body = {
|
||||
data: presentUser(ctx.state.user),
|
||||
};
|
||||
});
|
||||
|
||||
router.post('users.update', auth(), async ctx => {
|
||||
@ -48,7 +50,9 @@ router.post('users.update', auth(), async ctx => {
|
||||
|
||||
await user.save();
|
||||
|
||||
ctx.body = { data: await presentUser(user, { includeDetails: true }) };
|
||||
ctx.body = {
|
||||
data: presentUser(user, { includeDetails: true }),
|
||||
};
|
||||
});
|
||||
|
||||
router.post('users.s3Upload', auth(), async ctx => {
|
||||
|
Reference in New Issue
Block a user