[Fixed]-When and where should I send push notification to user in Django?

1👍

I think you could use django signal post_save method. It’s intended to do post processes after an object is saved. I won’t recommend overriding save method because it’s easily messed up. Django doc: https://docs.djangoproject.com/en/1.8/ref/signals/#post-save

Leave a comment