I have a Django model with 2 ManyToMany
fields. I want to process the data from the model each time it has been saved.
The post_save
signal is sent before it saves the ManyToMany
relations, so I can't use that one. Then you have the m2m_changed
signal, but since I have 2 ManyToMany
fields I cannot be sure on which ManyToMany
field I should put the signal.
Isn't there a signal that is triggered after all the ManyToMany
fields have been saved?