mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2025-05-13 06:34:25 -04:00
17 lines
352 B
Python
17 lines
352 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class CoreAppConfig(AppConfig):
|
|
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()
|