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
The only reference to users in the system are the events they are in and there is a method delete_events(namespace, person, action, thing) where you could pass delete_events('movies', 'bob') to delete all of bobs movie events.
If you do delete a users events then recommendations across the system may become worse. There are laws around the world where you must delete any information you have on a user. You might be able to selectively anonymize all user activity by using a random uuid instead of their name, and if a user deletes their account then delete the uuid, this way it is difficult to associate any event with a particular deleted user.
Is there a way to delete people from the database. This could be helpful in a web app when a user deletes their account.
The text was updated successfully, but these errors were encountered: