2018-11-09 06:54:38 +00:00
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
|
|
|
|
|
|
class AuthenticationConfig(AppConfig):
|
|
|
|
name = 'authentication'
|
|
|
|
|
|
|
|
def ready(self):
|
|
|
|
from . import signals_handlers
|
2021-10-20 11:45:37 +00:00
|
|
|
from . import notifications
|
2018-11-09 06:54:38 +00:00
|
|
|
super().ready()
|
|
|
|
|