django-allauth-cas/allauth_cas/apps.py
2024-01-25 14:33:24 +00:00

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