2022-12-07 19:09:05 -05:00
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
|
|
|
|
|
|
class CatalogConfig(AppConfig):
|
|
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
|
|
name = 'catalog'
|
2022-12-15 17:29:35 -05:00
|
|
|
|
|
|
|
def ready(self):
|
|
|
|
# load key modules in proper order, make sure class inject and signal works as expected
|
|
|
|
from catalog import models
|
|
|
|
from catalog import sites
|
|
|
|
from journal import models as journal_models
|