On 5/9/2009 7:14 AM, Rune Bromer wrote:
> 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?

If you already did an override on `Payment.delete()`, then you should be 
fine.

Although be mindful of bulk delete, as it doesn't use `Model.delete()`:
<http://code.djangoproject.com/ticket/11022>

Also you might want to think about setting up a group in auth to have 
finer grained permission control. It's pretty simple to just leave out 
delete for this specific model. Is there a reason they need to be 
superusers?

-- 
George

--~--~---------~--~----~------------~-------~--~----~
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