On 8/24/06, Jakub Labath <[EMAIL PROTECTED]> wrote: > I think I'm with the 20% just the extra fields is not enough in my case. > I will need the ability to call my functions before and/or after the > User object is saved in django user admin. For example > somebody changes user's email in admin I want to call function that > will report the new email address to a webservice.
Check out Django's internal dispatcher; whenever an instance of a model is saved, the dispatcher signals 'pre_save' and 'post_save' are fired before and after the save, respectively, with information about the class of model which was saved. You can write your own code which listens for a 'post_save' from the User class and executes your custom functions whenever that signal fires (including, if need be, notifying other servers). -- "May the forces of evil become confused on the way to your house." -- George Carlin --~--~---------~--~----~------------~-------~--~----~ 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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users -~----------~----~----~----~------~----~------~--~---