1
0
Fork 0
mirror of synced 2024-08-21 21:11:49 +12:00
ArchiveBox/archivebox/core/apps.py

16 lines
348 B
Python
Raw Normal View History

2019-04-03 09:36:41 +13:00
from django.apps import AppConfig
class CoreAppConfig(AppConfig):
2019-04-03 09:36:41 +13:00
name = 'core'
# label = 'Archive Data'
verbose_name = "Archive Data"
# WIP: broken by Django 3.1.2 -> 4.0 migration
default_auto_field = 'django.db.models.UUIDField'
def ready(self):
from .auth import register_signals
register_signals()