In firebase authentication, is there a way to remove a custom claim?
From the documentation:
You can delete a user's custom claims by passing null for
customClaims
.
So this should delete the claim:
admin.auth().updateUser(uid, {claim: null});
From the documentation:
You can delete a user's custom claims by passing null for
customClaims
.
So this should delete the claim:
admin.auth().updateUser(uid, {claim: null});