Merge branch 'hotfix/3.0.4'

This commit is contained in:
Nathan Chapman 2023-01-22 01:47:47 -07:00
commit e7c451360e
2 changed files with 11 additions and 11 deletions

View File

@ -5,7 +5,7 @@ class AccountsConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'accounts'
# def ready(self):
# from .signals import (
# user_saved
# )
def ready(self):
from .signals import (
user_saved
)

View File

@ -5,10 +5,10 @@ class CoreConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'core'
# def ready(self):
# from .signals import (
# order_created,
# transaction_created,
# order_line_post_save,
# trackingnumber_postsave
# )
def ready(self):
from .signals import (
order_created,
transaction_created,
order_line_post_save,
trackingnumber_postsave
)