Reputation: 3674
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
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