Skip to content

Commit

Permalink
feature/google-login
Browse files Browse the repository at this point in the history
  • Loading branch information
rohit-zip committed Jun 14, 2024
1 parent eac59ba commit 2f32262
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -482,6 +482,7 @@ public CompletableFuture<AuthResponse> loginGoogle(GoogleLoginRequest googleLogi
UserDetails userDetails = customUserDetailService.loadUserByUsername(userInfo.getEmail());
UsernamePasswordAuthenticationToken authentication = new UsernamePasswordAuthenticationToken(userDetails, null, userDetails.getAuthorities());
AuthResponse authResponse = getAuthResponse(httpServletRequest, authentication);
logger.info("Execution Time (Login Google) -> {}ms", System.currentTimeMillis() - startTime);
return CompletableFuture.completedFuture(authResponse);
}

Expand Down

0 comments on commit 2f32262

Please sign in to comment.