Skip to content

Commit

Permalink
prettified
Browse files Browse the repository at this point in the history
  • Loading branch information
Vishwas1 committed Aug 30, 2024
1 parent e7d6c76 commit 5cf47a1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/social-login/services/social-login.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,9 @@ export class SocialLoginService {
appUserID: userInfo.userId,
userAccessList: userInfo.accessList,
isTwoFactorEnabled: authenticator ? true : false,
isTwoFactorAuthenticated: req.user.isTwoFactorAuthenticated? req.user.isTwoFactorAuthenticated: false,
isTwoFactorAuthenticated: req.user.isTwoFactorAuthenticated
? req.user.isTwoFactorAuthenticated
: false,
authenticatorType: authenticator?.type,
};
const secret = this.config.get('JWT_SECRET');
Expand Down

0 comments on commit 5cf47a1

Please sign in to comment.