Are django signals also included inside of the transaction.atomic decorator?
问题 I have a model file that uses a post_save signal to create a linked row in another table. In typical fashion, I can create a page from one of my views which is decorated with @transaction.atomic. I would like to know if this decorator will put the creation of the Page object and the SharedPage object in the same transaction. It is not clear from the django docs that signals are a part of this atomic transaction. models.py class Page(models.Model): name = models.CharField(default='My default