I need to store email's verification status info in database in firebase. For example when an user create an email/password account with uid="001", I will create a node in database: '001':{emailverified: false}. And then when they verify this email I will update the node '001':{emailverified: true}
I tried by creating custom email action handlers. But the problem is that when user click the link to verify his email, I can not get the user's uid from the oobCode. So I can not find a way to update email's verification in the database.