[Answer]-Push notification using Django

1👍

Have a look into the Signals topic on the documentation.

@receiver(post_save, sender=MyModel) 
def my_handler(sender, **kwargs): 
    ...

Leave a comment