Skip to content

Commit

Permalink
Update LoginListener to also relay userId and username
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomazFB committed Oct 25, 2023
1 parent a0533ce commit 3769eb0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -579,6 +579,6 @@ public void onWebauthnChallengeReceived(OnWebauthnChallengeReceived event) {
// TODO: Handle error
return;
}
mLoginListener.signSecurityKey(event.challengeInfo);
mLoginListener.signSecurityKey(event.challengeInfo, event.mUserId, mEmailAddress);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ void gotUnregisteredSocialAccount(String email, String displayName, String idTok
void needs2faSocial(String email, String userId, String nonceAuthenticator, String nonceBackup, String nonceSms);
void needs2faSocialConnect(String email, String password, String idToken, String service);
void needsSecurityKey(String userId, String webauthnNonce);
void signSecurityKey(String challengeRequestJson);
void signSecurityKey(String challengeRequestJson, String userId, String username);
void loggedInViaPassword(ArrayList<Integer> oldSitesIds);
void helpEmailPasswordScreen(String email);

Expand Down

0 comments on commit 3769eb0

Please sign in to comment.