mirror of https://github.com/jumpserver/jumpserver
14 lines
319 B
Python
14 lines
319 B
Python
from django.apps import AppConfig
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
|
|
class AuthenticationConfig(AppConfig):
|
|
name = 'authentication'
|
|
verbose_name = _('Authentication')
|
|
|
|
def ready(self):
|
|
from . import signal_handlers
|
|
from . import notifications
|
|
super().ready()
|
|
|