aboutsummaryrefslogtreecommitdiffstats
path: root/alphabetlearning/users/context_processors.py
blob: e2633aecde997f14c48575da077052bd373363da (plain) (blame)
1
2
3
4
5
6
7
8
from django.conf import settings


def allauth_settings(request):
    """Expose some settings from django-allauth in templates."""
    return {
        "ACCOUNT_ALLOW_REGISTRATION": settings.ACCOUNT_ALLOW_REGISTRATION,
    }