You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This PR tracks the refactor, implementation and migration of the Profile model that's being used by the User model to store it's metadata
Personal information need to be moved into a private section that can only be read by the user it belongs to
So for this to work:
a new PrivateProfile needs to be introduced
The auth proxy needs to be refactor to block reading those values by everyone, except the owner (this might get harry, if multiple model connections are introduced)
refactor the UI to fetch data from two queries
refactor the UI to update data in two places (via two mutations)
make the "create user" wizard email address optional
The text was updated successfully, but these errors were encountered:
This PR tracks the refactor, implementation and migration of the
Profile
model that's being used by theUser
model to store it's metadataPersonal information need to be moved into a private section that can only be read by the user it belongs to
So for this to work:
PrivateProfile
needs to be introducedThe text was updated successfully, but these errors were encountered: