2017-07-25 18:31:42 +02:00
|
|
|
from django.apps import AppConfig
|
2024-01-25 15:33:24 +01:00
|
|
|
from django.utils.translation import gettext_lazy as _
|
2017-07-25 18:31:42 +02:00
|
|
|
|
|
|
|
|
|
|
|
class CASAccountConfig(AppConfig):
|
2024-01-25 15:33:24 +01:00
|
|
|
name = "allauth_cas"
|
2017-07-25 18:31:42 +02:00
|
|
|
verbose_name = _("CAS Accounts")
|
|
|
|
|
|
|
|
def ready(self):
|
|
|
|
from . import signals # noqa
|