jumpserver/apps/authentication/apps.py

14 lines
373 B
Python

from django.apps import AppConfig
from django.utils.translation import gettext_lazy as _
class AuthenticationConfig(AppConfig):
name = 'authentication'
verbose_name = _('App Authentication')
def ready(self):
from . import signal_handlers # noqa
from . import tasks # noqa
from . import notifications # noqa
super().ready()