2018-11-09 06:54:38 +00:00
|
|
|
from django.apps import AppConfig
|
2022-02-17 12:13:31 +00:00
|
|
|
from django.utils.translation import ugettext_lazy as _
|
2018-11-09 06:54:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
class AuthenticationConfig(AppConfig):
|
|
|
|
name = 'authentication'
|
2022-02-17 12:13:31 +00:00
|
|
|
verbose_name = _('Authentication')
|
2018-11-09 06:54:38 +00:00
|
|
|
|
|
|
|
def ready(self):
|
2022-03-02 12:48:43 +00:00
|
|
|
from . import signal_handlers
|
2021-10-20 11:45:37 +00:00
|
|
|
from . import notifications
|
2018-11-09 06:54:38 +00:00
|
|
|
super().ready()
|
|
|
|
|