ConceptPortal-public/rsconcept/backend/apps/users/apps.py

12 lines
345 B
Python
Raw Normal View History

2023-12-26 14:23:51 +03:00
''' Application: User profile and Authorization. '''
2023-07-15 17:46:19 +03:00
from django.apps import AppConfig
class UsersConfig(AppConfig):
''' Application config. '''
2023-07-15 17:46:19 +03:00
default_auto_field = 'django.db.models.BigAutoField'
name = 'apps.users'
2024-02-25 20:55:30 +03:00
def ready(self):
2024-05-24 18:31:14 +03:00
import apps.users.signals # pylint: disable=unused-import,import-outside-toplevel