TL;DR:
I need a way to trigger a custom signal after the post_save
signal, automatically, is there any way of doing it?
I'm currently developing a library for django that requires a lot of comes and goes with the post_save
signal in django and I was wondering if it's possible to trigger another signal after the post_save
so I could implement my own and not intervene the post_save
in case a project that uses the library needs to do it.
So far I know that signals are expected to receive a class as a sender argument, and if I trigger manually the signal from the post_save I would be doing nothing (I'd still be intervening it). Is there any workaround for this? Am I missing something in the docs?