jumpserver/apps/users/apps.py

16 lines
387 B
Python
Raw Normal View History

2016-08-08 16:43:11 +00:00
from __future__ import unicode_literals
from django.apps import AppConfig
2023-07-24 03:52:25 +00:00
from django.utils.translation import gettext_lazy as _
2016-08-08 16:43:11 +00:00
class UsersConfig(AppConfig):
name = 'users'
verbose_name = _('App Users')
2016-09-03 11:05:50 +00:00
2018-02-27 04:18:36 +00:00
def ready(self):
2023-07-24 06:09:22 +00:00
from . import signal_handlers # noqa
from . import tasks # noqa
from . import notifications # noqa
2018-02-27 04:18:36 +00:00
super().ready()