Shane O'Seasnain
Shane O'Seasnain

Reputation: 3674

Email verification in Firebase Console

Is there a way for administrators to see and change the status of email verification from inside the Console? Everything I’ve found so far is based only on the client pushing a verification email from the backend and checking its status. It would be useful for the admin to get an overview of this too.

Upvotes: 6

Views: 2419

Answers (1)

Frank van Puffelen
Frank van Puffelen

Reputation: 600131

The email verification status is not shown in the Firebase console. It's not a bad idea, so I'd definitely file a feature request.

For individual users you can use the Firebase Admin SDK to read or change the emailVerified property.

To get the status of all users, you can use the auth:export command of the Firebase CLI.

Upvotes: 2

Related Questions