jumpserver/apps/authentication/apps.py

14 lines
373 B
Python
Raw Normal View History

from django.apps import AppConfig
2023-07-24 03:52:25 +00:00
from django.utils.translation import gettext_lazy as _
class AuthenticationConfig(AppConfig):
name = 'authentication'
verbose_name = _('App Authentication')
def ready(self):
2023-07-24 06:09:22 +00:00
from . import signal_handlers # noqa
from . import tasks # noqa
from . import notifications # noqa
super().ready()