外部サービス連携後のPackedUserがその情報を持つように (#4850)

This commit is contained in:
Satsuki Yanagi 2019-05-05 09:28:55 +09:00 committed by syuilo
parent 88e6929e9f
commit 7d64f8abe4

View file

@ -128,6 +128,19 @@ export class UserRepository extends Repository<User> {
detail: true
}),
twoFactorEnabled: profile!.twoFactorEnabled,
twitter: profile!.twitter ? {
id: profile!.twitterUserId,
screenName: profile!.twitterScreenName
} : null,
github: profile!.github ? {
id: profile!.githubId,
login: profile!.githubLogin
} : null,
discord: profile!.discord ? {
id: profile!.discordId,
username: profile!.discordUsername,
discriminator: profile!.discordDiscriminator
} : null,
} : {}),
...(opts.detail && meId === user.id ? {