mirror of
https://github.com/IRBorisov/ConceptPortal.git
synced 2025-06-26 21:10:38 +03:00
12 lines
344 B
Python
12 lines
344 B
Python
''' Application: User profile and Authorization. '''
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class UsersConfig(AppConfig):
|
|
''' Application config. '''
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'apps.users'
|
|
|
|
def ready(self):
|
|
import apps.users.signals # pylint: disable=unused-import,import-outside-toplevel
|