Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#678 Update UserManager to remove email_verified #703

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions firebase_admin/_user_mgt.py
Original file line number Diff line number Diff line change
Expand Up @@ -719,6 +719,12 @@ def update_user(self, uid, display_name=None, email=None, phone_number=None,
remove_provider.append('phone')
else:
payload['phoneNumber'] = _auth_utils.validate_phone(phone_number)

if email_verified is not None:
if email_verified is DELETE_ATTRIBUTE:
remove_provider.append('emailVerified')
else:
payload['emailVerified'] = _auth_utils.validate_email(email_verified)

if custom_claims is not None:
if custom_claims is DELETE_ATTRIBUTE:
Expand Down