perf(server): reduce db query
This commit is contained in:
parent
f68b646878
commit
aebd77ad38
1 changed files with 3 additions and 3 deletions
|
@ -78,14 +78,14 @@ export default class DbResolver {
|
|||
public async getAuthUserFromKeyId(keyId: string): Promise<AuthUser | null> {
|
||||
const key = await UserPublickeys.findOne({
|
||||
keyId,
|
||||
}, {
|
||||
relations: ['user'],
|
||||
});
|
||||
|
||||
if (key == null) return null;
|
||||
|
||||
const user = await Users.findOne(key.userId) as IRemoteUser;
|
||||
|
||||
return {
|
||||
user,
|
||||
user: key.user as IRemoteUser,
|
||||
key,
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue