Re: Receive post_save signal from another project

2015-09-03 Thread Shawn Milochik
Yes, it works. Just try it. If you put a post_save handler in any app it is called when any model is saved in any app. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an

Receive post_save signal from another project

2015-09-03 Thread Kishan Mehta
Hi All, I am working on requirement where after user sign up, User model of one app should send some data to another app in different project. For that we are thinking if we can use "post_save" signal on model. Is there any way if I can listen to signal of other porject's app. Regards, --