10 lines
248 B
Python
10 lines
248 B
Python
from django.apps import AppConfig
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class CASAccountConfig(AppConfig):
|
|
name = "allauth_cas"
|
|
verbose_name = _("CAS Accounts")
|
|
|
|
def ready(self):
|
|
from . import signals # noqa
|