Hi,

To send a welcome message to a new user, I am listening for a
"post_save" signal from an auth.models.User class and it works fine.
But I need to determine whether the user is newly created.

I can hook to the "pre_save" instead of "post_save" and check for the
"instance.id". This way I can determine if the user is new but this
time I do not know the new users id, which I need to register a
message for her. So with this approach, I need to listen for both
"pre_save" and "post_save", create a premature message on pre_save and
update it with the user.id on post_save.

This felt a little dirty. Other way might be checking the
"date_joined" which looks even dirtier.

Any suggestions?


--~--~---------~--~----~------------~-------~--~----~
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?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to