Update authenticate.ts

This commit is contained in:
syuilo 2019-04-16 01:20:28 +09:00
parent 400cdf0f26
commit 8fefb3a4c9
No known key found for this signature in database
GPG Key ID: BDC4C49D06AB9D69
1 changed files with 3 additions and 1 deletions

View File

@ -31,7 +31,9 @@ export default async (token: string): Promise<[User | null | undefined, App | nu
.findOne(accessToken.appId);
const user = await Users
.findOne(accessToken.userId);
.findOne({
id: accessToken.userId // findOne(accessToken.userId) のように書かないのは後方互換性のため
});
return [user, app];
}