jumpserver/apps/orgs/apps.py

13 lines
308 B
Python
Raw Normal View History

2018-07-12 16:00:35 +00:00
from django.apps import AppConfig
2023-07-24 03:52:25 +00:00
from django.utils.translation import gettext_lazy as _
2018-07-12 16:00:35 +00:00
class OrgsConfig(AppConfig):
name = 'orgs'
verbose_name = _('App Organizations')
2018-08-13 10:26:13 +00:00
def ready(self):
2023-07-24 06:09:22 +00:00
from . import signal_handlers # noqa
from . import tasks # noqa
super().ready()