Hi,

I run a small project handling payments from users. Each user has the
possibility to delete their account and if they do I have to keep
their payment data. Also, I would like to disable admins from deleting
the data as there are NEVER a valid reason to do so. The payment model
has foreign keys so obviously I need to set these to None before I
delete the instances ref'ed by the payment. I do this in a pre_delete
() signal for all the models ref'ed by the payment model.

Also, I created a delete() method on the payment model that will not
call the supers delete() when the payment is complete.

The only thing missing is the admin. As I understand the admin will
send a pre_delete() signal so hopefully it will not find the payment
objects when deleting a user because the link will go away in the
signal. What I'm more worried about is if a stupid admin tries to
delete the payment objects themselves. I can remove the actions of
cause, but how about the per-object delete functionality? Removing the
permission will not work for people having is_superuser = True.

Hope the problem is understandable. Hopefully I'm overlooking
something simple?

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to