Skip to content

Commit

Permalink
feat(auth, windows): add support for creationTime and `lastSignInTi…
Browse files Browse the repository at this point in the history
  • Loading branch information
Lyokone authored Jan 5, 2024
1 parent 94a156a commit 387e943
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,8 @@ PigeonUserInfo FirebaseAuthPlugin::ParseUserInfo(
result.set_photo_url(user->photo_url());
result.set_provider_id(user->provider_id());
result.set_uid(user->uid());
result.set_creation_timestamp(user->metadata().creation_timestamp);
result.set_last_sign_in_timestamp(user->metadata().last_sign_in_timestamp);

return result;
}
Expand Down

0 comments on commit 387e943

Please sign in to comment.