You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When a new email/password user is created, in order to verify their email, need to send a verification email. Firebase has built in support for this which needs to be exposed in firestack.
@ghuh this is implemented on my branch now (the soon to be v3) and you can also now access the current users email verification status by doing:
// all the below is exactly what you'd do with the web apiconstuser=firestack.auth().currentUser;if(user){if(!user.emailVerified){console.warn(`User ${user.uid} is not verified`);}else{// resend verification email? or w/e else you'd do in this scenariouser.sendEmailVerification();}}else{// not signed in}
Feel free to give it ago - we'll be merging this in soon hopefully.
When a new email/password user is created, in order to verify their email, need to send a verification email. Firebase has built in support for this which needs to be exposed in firestack.
Android: https://firebase.google.com/docs/auth/android/manage-users#send_a_user_a_verification_email
iOS: https://firebase.google.com/docs/auth/ios/manage-users#send_a_user_a_verification_email
Web: https://firebase.google.com/docs/auth/web/manage-users#send_a_user_a_verification_email
The text was updated successfully, but these errors were encountered: