jumpserver/apps/tickets/apps.py

13 lines
323 B
Python
Raw Normal View History

2019-11-07 10:06:58 +00:00
from django.apps import AppConfig
2023-07-24 03:52:25 +00:00
from django.utils.translation import gettext_lazy as _
2019-11-07 10:06:58 +00:00
class TicketsConfig(AppConfig):
name = 'tickets'
verbose_name = _('App Tickets')
2019-11-08 07:48:01 +00:00
def ready(self):
2023-07-24 06:09:22 +00:00
from . import signal_handlers # noqa
from . import notifications # noqa
2019-11-08 07:48:01 +00:00
return super().ready()