rename cacheService.getUsers to findUsers to match naming scheme
This commit is contained in:
parent
18b909a10c
commit
0757ca921f
1 changed files with 1 additions and 1 deletions
|
|
@ -116,7 +116,7 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
|
|||
return [];
|
||||
}
|
||||
|
||||
const users = await this.cacheService.getUsers(ps.userIds);
|
||||
const users = await this.cacheService.findUsersById(ps.userIds);
|
||||
|
||||
// リクエストされた通りに並べ替え
|
||||
// 順番は保持されるけど数は減ってる可能性がある
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue