Improve performance

This commit is contained in:
syuilo
2018-12-02 06:44:18 +09:00
parent 8bc5febe66
commit 10f466c895
3 changed files with 13 additions and 4 deletions

View File

@ -41,6 +41,14 @@ export const meta = {
'ja-JP': 'ローカルユーザーのみ検索対象にするか否か'
}
},
detail: {
validator: $.bool.optional,
default: true,
desc: {
'ja-JP': '詳細なユーザー情報を含めるか否か'
}
},
},
};
@ -72,6 +80,5 @@ export default define(meta, (ps, me) => new Promise(async (res, rej) => {
}
}
// Serialize
res(await Promise.all(users.map(user => pack(user, me, { detail: true }))));
res(await Promise.all(users.map(user => pack(user, me, { detail: ps.detail }))));
}));