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

Delete Person #52

Open
hashgupta opened this issue Mar 25, 2017 · 2 comments
Open

Delete Person #52

hashgupta opened this issue Mar 25, 2017 · 2 comments

Comments

@hashgupta
Copy link

Is there a way to delete people from the database. This could be helpful in a web app when a user deletes their account.

@grahamjenson
Copy link
Owner

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.

@grahamjenson
Copy link
Owner

Looking at the code delete_events may be broken. I will attempt to fix that soon.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants