mirror of
https://github.com/Labelbase/Labelbase.git
synced 2026-08-13 12:33:23 +02:00
9 lines
225 B
Python
9 lines
225 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class UserprofileConfig(AppConfig):
|
|
default_auto_field = "django.db.models.BigAutoField"
|
|
name = "userprofile"
|
|
|
|
def ready(self):
|
|
import userprofile.signals # noqa: F401
|