Deleting an account should be possible #71361
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Currently it's not possible to delete someone's account on Blender Cloud without hacking the database directly. For obvious reasons this is not a good approach.
Account deletion could be implemented in a few incremental steps:
{'_deleted': true}
, and remove authentication information. By anonymising the user document (and not deleting it) we don't have to worry about other parts of Blender Cloud crashing because it receivesNone
instead of a user. Note that this change should also trigger a re-index of the user in ElasticSearch.Added subscribers: @dr.sybren, @fsiddi, @SemMulder