mirror of
https://github.com/spbleadersofdigtal/backend.git
synced 2024-11-22 11:26:33 +03:00
14 lines
338 B
Python
14 lines
338 B
Python
from django.apps import AppConfig
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class UsersConfig(AppConfig):
|
|
name = "pitch_deck_generator.users"
|
|
verbose_name = _("Users")
|
|
|
|
def ready(self):
|
|
try:
|
|
import pitch_deck_generator.users.signals # noqa F401
|
|
except ImportError:
|
|
pass
|