2018-11-09 06:54:38 +00:00
|
|
|
from django.apps import AppConfig
|
2023-07-24 03:52:25 +00:00
|
|
|
from django.utils.translation import gettext_lazy as _
|
2018-11-09 06:54:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
class AuthenticationConfig(AppConfig):
|
|
|
|
name = 'authentication'
|
2024-01-17 03:08:39 +00:00
|
|
|
verbose_name = _('App Authentication')
|
2018-11-09 06:54:38 +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-11-09 06:54:38 +00:00
|
|
|
super().ready()
|