This commit is contained in:
syuilo 2019-04-10 18:10:09 +09:00
parent 4152e59638
commit dda5f6559d
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69

View file

@ -154,6 +154,12 @@ export class UserRepository extends Repository<User> {
}),
} : {}),
...(opts.includeSecrets ? {
clientData: profile.clientData,
email: profile.email,
emailVerified: profile.emailVerified,
} : {}),
...(relation ? {
isFollowing: relation.isFollowing,
isFollowed: relation.isFollowed,