Right now, after the user registers, it is computed an unique key which identifies the user by their information like name, email, profile picture. In case the user wants to update any of these fields, a new uid will be generated.
In order to keep the current functionality, we need to keep track of the new uid and to link it to the original uid.
Right now, after the user registers, it is computed an unique key which identifies the user by their information like
name
,email
,profile picture
. In case the user wants to update any of these fields, a new uid will be generated.In order to keep the current functionality, we need to keep track of the new
uid
and to link it to theoriginal uid
.