mirror of
https://github.com/magnum-opus-nn-cp/backend.git
synced 2025-02-23 15:10:43 +03:00
14 lines
330 B
Python
14 lines
330 B
Python
|
from django.apps import AppConfig
|
||
|
from django.utils.translation import gettext_lazy as _
|
||
|
|
||
|
|
||
|
class UsersConfig(AppConfig):
|
||
|
name = "press_release_nl.users"
|
||
|
verbose_name = _("Users")
|
||
|
|
||
|
def ready(self):
|
||
|
try:
|
||
|
import press_release_nl.users.signals # noqa F401
|
||
|
except ImportError:
|
||
|
pass
|