summaryrefslogtreecommitdiff
path: root/django/contrib/auth/apps.py
blob: a0389acabe8f779ae74875a8434e4b6cb1cccff5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
from django.apps import AppConfig
from django.core import checks
from django.contrib.auth.checks import check_user_model

from django.utils.translation import ugettext_lazy as _


class AuthConfig(AppConfig):
    name = 'django.contrib.auth'
    verbose_name = _("authentication and authorization")

    def ready(self):
        checks.register('models')(check_user_model)