Improve performance
This commit is contained in:
parent
8bc5febe66
commit
10f466c895
3 changed files with 13 additions and 4 deletions
|
@ -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 }))));
|
||||
}));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue