I have created a new model with linked messages and activity
i.e.
class MyModel(models.Model):
_name='my_module.my_model'
_inherit = ['mail.thread','mail.activity.mixin']
I would liko to execute some code every time an associated activity is marked as done.
Is it possible ?